PowerShellでHTTPダウンロードするには、System.Net.WebClient クラスを使用します。
PS > $webClient = new-object System.Net.WebClient
PS > $webClient.DownloadFile("http://hiro.wankuma.com/index.html", "C:\Work\index.html")上記は
http://hiro.wankuma.com/index.html をダウンロードして C:\Work に index.html として保存します。