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?

link|improve this question
8  
DOS 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 Jun 16 '11 at 12:02
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 Jun 16 '11 at 12:05
@jonsca Thanks, actually I just found it myself :) – Tamzin Jun 16 '11 at 12:11
feedback

migrated from stackoverflow.com Jun 16 '11 at 12:28

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by Oliver Salzburg, Sathya Mar 24 at 14:55

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

Wait, what?

link|improve this answer
I've used this wget version for years: users.ugent.be/~bpuype/wget – jftuga Jun 16 '11 at 12:37
+1, you don't need a wget alternative. – Phoshi Jun 16 '11 at 13:00
feedback

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.

link|improve this answer
feedback

Already answered: http://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
link|improve this answer
feedback