Windows PowerShell Cookbook: Difference between revisions

From Littledamien Wiki
Jump to navigation Jump to search
(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...")
(No difference)

Revision as of 23:25, 16 March 2012

Cookbook

To download from the web a la *nix wget:

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