Is there a wget or cURL type command line utility native to Windows Vista? How does it work?

link|improve this question
Even Microsoft distributes wget.exe in the IIS Administration Pack. – paradroid Jun 20 '11 at 19:41
Duplicates the mis-titled "DOS Downloaders / Downloads Managers (e.g. WGET) any more?". – JdeBP Jun 21 '11 at 10:59
feedback

4 Answers

There is no wget alternative really, you can use Wget for Windows and assign the path in your Environment Variables to get it working how you want?

link|improve this answer
The problem is, the person I'm working with is getting a browser freeze on launch, and they have no access to another computer. – Jordan Jun 20 '11 at 19:48
1  
If they're running through ethernet, get them to boot into safe mode with networking? – Sandeep Bansal Jun 20 '11 at 19:56
feedback

It seams you only need to download a alternative browser. You can use this command to download Mozilla Firefox with the command prompt:

    explorer.exe http://releases.mozilla.org/pub/mozilla.org/firefox/releases/6.0.2/win32/en-US/Firefox%20Setup%206.0.2.exe

This launches also the internet explorer, but only with a basic feature set. This should work even if internet explorer is broken (in most cases).

You can also use the FTP-Command. Type into the command prompt following commands:

  1. FTP - Which opens the FTP-Client
  2. open ftp.mozilla.org - Which connects to Mozilla-FTP
  3. Just login as Anonymous and an empty password.
  4. cd /pub/mozilla.org/firefox/releases/4.0.1/win32/en-US/ -To change the directory
  5. recv "Firefox Setup 4.0.1.exe" - To Download Firefox Installer. The File is located in the current folder of the command prompt. (Usually your Profile-Folder)
  6. bye to close the FTP-Client
  7. exit to close the command prompt.
link|improve this answer
feedback

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
check out /SetNotifyCmdLine option if you need to use this command sequentially in a .bat – Tiberiu-Ionuț Stan Oct 26 '11 at 12:49
feedback

Powershell v3 CTP1 comes with a command like wget/curl. It's called Invoke-Web-Request. To learn more, you can visit this post: http://rambletech.wordpress.com/2011/09/21/windows-powershell-v3-includes-command-like-wgetcurl/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.