Download a file via HTTP from a script in Windows

19

8

I want a way to download a file via HTTP given its URL (similar to how wget works). I have seen the answers to this question, but I have two changes to the requirements:

  • I would like it to run on Windows 7 or later (though if it works on Windows XP, that's a bonus).
  • I need to be able to do this on a stock machine with nothing but the script, which should be text that could be easily entered on a keyboard or copy/pasted.
  • The shorter, the better.

So, essentially, I would like a .cmd (batch) script, VBScript, or PowerShell script that can accomplish the download. It could use COM or invoke Internet Explorer, but it needs to run without any input, and should behave well when invoked without a display (such as through a Telnet session).

Jason R. Coombs

Posted 2010-04-09T18:14:13.133

Reputation: 1 952

dload v1.0 a win32 command line tool like wget http://superuser.com/a/833445/384998

– seizu – 2014-10-30T16:52:52.787

1

possible duplicate of How to download files from command line in Windows, like Wget is doing?

– bummi – 2015-01-26T12:24:13.150

Not a duplicate because this question is specifically looking for something that will run on a stock machine (without additional software, such as wget for Windows). – Jason R. Coombs – 2015-02-01T16:31:56.757

@JasonR.Coombs The accepted answer is the same as one of the answers in that question, so future reader gets nothing more. – Franklin Yu – 2017-11-13T19:17:27.770

I agree; at this point, the more general question supersedes this one. – Jason R. Coombs – 2017-11-14T13:54:09.817

Answers

15

If you have PowerShell >= 3.0, you can use Invoke-WebRequest:

Invoke-WebRequest -OutFile su.htm -Uri superuser.com

Or golfed:

iwr -outf su.htm superuser.com

Steven Penny

Posted 2010-04-09T18:14:13.133

Reputation: 7 294

2One-liner from regular cmd prompt: powershell -command "iwr -outf su.htm superuser.com" – valiano – 2019-01-01T15:19:13.080

14

I would use BITS (primer):

Background Intelligent Transfer Service (BITS) is a component of modern
Microsoft Windows operating systems that facilitates prioritized,
throttled, and asynchronous transfer of files between machines using
idle network bandwidth.

Starting with Windows 7, Microsoft advises to use the PowerShell cmdlets for BITS.

% import-module bitstransfer
% Start-BitsTransfer http://path/to/file C:\Path\for\local\file

You could also use BITS via COM, see here for an example VBScript. And there is 'bitsadmin', a commandline tool to control downloads:

BITSAdmin is a command-line tool that you can use to create download or
upload jobs and monitor their progress.

In Windows 7 bitsadmin.exe states itself that it is a deprecated tool. Nevertheless:

% bitsadmin.exe /transfer "NAME" http://path/to/file C:\Path\for\local\file

akira

Posted 2010-04-09T18:14:13.133

Reputation: 52 754

note that out-path must be fully qualified and not relative (hat tip http://superuser.com/questions/365755/why-doesnt-the-bitsadmin-exe-download-manager-work-for-me)

– matt wilkie – 2016-11-08T21:33:13.723

What is the meaning of "NAME" in your % bitsadmin.exe /transfer "NAME" http://path/to/file C:\Path\for\local\file example? – Kevin Meredith – 2016-12-23T15:37:34.720

@KevinMeredith: https://msdn.microsoft.com/en-us/library/aa362813(VS.85).aspx - "Use the name parameter to specify the name of the job." ... in the /transfer section

– akira – 2016-12-23T19:48:00.497

`BITSADMIN version 3.0 BITS administration utility. (C) Copyright 2000-2006 Microsoft Corp.

BITSAdmin is deprecated and is not guaranteed to be available in future versions of Windows. Administrative tools for the BITS service are now provided by BITS PowerShell cmdlets.` – BanksySan – 2018-06-01T16:16:02.670

2It appears now that bitsadmin is deprecated and may not be included in future versions of Windows. – Jason R. Coombs – 2012-02-20T14:11:34.540

@JasonR.Coombs: link? reference? – akira – 2012-02-21T06:06:55.280

2http://technet.microsoft.com/en-us/magazine/ff382721.aspx ... so, instead of "bitadmin.exe" one just uses bits-cmdlets. – akira – 2012-02-21T06:24:55.260

1thanks for that. All I had to go on was bitsadmin was telling me it was deprecated when I ran it. – Jason R. Coombs – 2012-02-22T12:27:39.370

7

Try the Web Client class. There is a sample PowerShell script at the bottom of this page:

$c = new-object system.net.WebClient
$r = new-object system.io.StreamReader $c.OpenRead("http://superuser.com")
echo $r.ReadToEnd()

Charles Gargent

Posted 2010-04-09T18:14:13.133

Reputation: 703

2This is helpful. I found the WebClient also has a DownloadFile method, which will download the content directly to a file. Thanks. – Jason R. Coombs – 2010-04-10T11:56:18.840

3

Copy and paste the following six lines (or just the last four lines) into a text file. Then rename it to vget.vbs.

'cscript vget.vbs >FILE.TXT
'Run this vbscript at command line. Use above syntax to download/create FILE.TXT
Set oX = CreateObject("Microsoft.XmlHTTP")
oX.Open "GET", "http://www.exampleURL.com/FILE.TXT", False
oX.Send ""
WScript.Echo oX.responseText

Obviously you need to customize three things in this script to make it work for you.

  1. The part which says "http://www.exampleURL.com/FILE.TXT". You will need to substitute the correct URL for the file you wish to download.
  2. The command you will run at the command line to execute this script; will need to specify the correct name for the script, vget.vbs, if that is what you called it.
  3. And the name FILE.TXT that you want the output to be directed to by a DOS batch command line.

I have only tried using this to download a raw ASCII text file (a more powerful cmd script) from my Dropbox account, so I don't know if it will work for EXE files, etc.; or from other webservers.

If you dispense with the first two comment lines, it is only four lines long. If you know your way around VBScript you might even be able to carry this code around in your head, and type it into the command line as needed. It only contains five key command components: CreateObject, .Open, .Send, WScript.Echo and .responseText.

ozidroid

Posted 2010-04-09T18:14:13.133

Reputation: 39

1

Here's my attempt to resume the ways of how file can be downloaded on Windows without usage of external tools.

It includes BITSADMIN, Microsoft.XmlHTTP and WinHTTP with a hybrid batch/JScript script that does not need temp files, and System.Net.WebClinet with jscript.net self-compiled hybrid.

npocmaka

Posted 2010-04-09T18:14:13.133

Reputation: 887