DOS Downloaders / Downloads Managers (e.g. WGET) any more?

2

Possible Duplicate:
wget/cURL alternative native to Windows?

I am currently looknig for a DOS down-loader similar to wget, are there any alternatives for Windows?

Tamzin

Posted 2011-06-16T12:00:17.253

Reputation:

Question was closed 2012-03-24T14:55:35.843

8DOS and Windows are two different operating systems. In addition, DOS hasn't been used for the last 15 years or so. (Well, in some sense Windows 9x operating systems are DOS applications.) The command line interpreter cmd.exe that is found in Windows has nothing to do with the old DOS operating system! So, are you looking for a DOS application or a command-line (console) Windows application? – Andreas Rejbrand – 2011-06-16T12:02:31.387

3

If you're looking for Windows command line (excellent point @Andreas), cURL may work for you. Look for the binary download not the source.

– jonsca – 2011-06-16T12:05:26.107

@jonsca Thanks, actually I just found it myself :) – None – 2011-06-16T12:11:56.803

Please see this link http://users.ugent.be/~bpuype/wget/ , you can download the same wget exe and can be run on dos same as linux,... To retrieve with passwords (http or ftp), you can use the following url syntax:

wget http://username:password@www.example.net/somedir/somefile wget ftp://username:password@ftp.example.net/somedir/somefile

– Siraj Khan – 2014-04-18T08:56:19.863

Answers

7

Wait, what?

Ignacio Vazquez-Abrams

Posted 2011-06-16T12:00:17.253

Reputation: 100 516

1

I've used this wget version for years: http://users.ugent.be/~bpuype/wget/

– jftuga – 2011-06-16T12:37:05.510

+1, you don't need a wget alternative. – Phoshi – 2011-06-16T13:00:40.593

1

However, if you would like an alternative, aria2 is very nice. Handles HTTP/S, FTP, Metalinks, BitTorrent, segmented downloads, preallocation, download resuming, reading cookies from Firefox/Chrome, can be daemonized and controlled via JSON-RPC/XML-RPC.

A GUI frontend is available in uGet.

afrazier

Posted 2011-06-16T12:00:17.253

Reputation: 21 316

1

Already answered: https://superuser.com/a/350763/102983

Native to Windows (comes preinstalled, and depends on "bits" Windows service):

bitsadmin

Can do what wget does, and prolly more (you can control an ongoing job via api like commands - for example you can get status speed and cancel if it is too slow)

http://msdn.microsoft.com/en-us/library/windows/desktop/aa362813(v=vs.85).aspx

Example usage from my own experience (you can do parallel downloads in the same .bat, or do sequencial downloads in the same job):

bitsadmin /create thisissomejobname

bitsadmin /addfile thisissomejobname http://kakao.ro/Pictures.iso C:\john_pictures.iso

bitsadmin /SetCredentials thisissomejobname Server BASIC somehttpuser somehttppassword

bitsadmin /resume thisissomejobname

REM how to get status:
bitsadmin /info thisissomejobname

Tiberiu-Ionuț Stan

Posted 2011-06-16T12:00:17.253

Reputation: 499