Skip to content

Instantly share code, notes, and snippets.

View andr6's full-sized avatar

Xpwd andr6

  • Planet Earth
View GitHub Profile
@andr6
andr6 / httpget.js
Created May 21, 2017 22:20 — forked from duncansmart/httpget.js
Download a file with Windows Script Host
// httpget.js: download a file (Windows Script Host)
// usage: cscript httpget.js <url> <file>
(function() {
if (WScript.Arguments.Length != 2) {
WScript.Echo("Usage: httpget.js <url> <file>")
WScript.Quit(1)
}
var url = WScript.Arguments(0)