Skip to content

Instantly share code, notes, and snippets.

@parzonka
Created February 23, 2014 18:05
Show Gist options
  • Save parzonka/9174906 to your computer and use it in GitHub Desktop.
Save parzonka/9174906 to your computer and use it in GitHub Desktop.
wget for windows cmd (credits: http://superuser.com/a/536400/131494)
cscript /nologo wget.js http://example.com
var WinHttpReq = new ActiveXObject("WinHttp.WinHttpRequest.5.1");
WinHttpReq.Open("GET", WScript.Arguments(0), /*async=*/false);
WinHttpReq.Send();
WScript.Echo(WinHttpReq.ResponseText);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment