Windows PowerShell Cookbook

From Littledamien Wiki
Revision as of 23:25, 16 March 2012 by Video8 (talk | contribs) (Created page with "==Cookbook== To download from the web a la *nix <code>wget</code>: <syntaxhighlight lang="powershell"> (new-object Net.WebClient).DownloadString("http://somedomain.com/somepag...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Cookbook

To download from the web a la *nix wget:

(new-object Net.WebClient).DownloadString("http://somedomain.com/somepage.ext")