Getting through a proxy server with PowerShell-ShawnShi的IT世界
#下载一个页面 $WebClient = new-object System.Net.WebClient$WebClient.proxy = $proxy
$url = "http://www.streamline-it-solutions.co.uk/blog/post/Getting-through-a-proxy-server-with-PowerShell.aspx"
$content = $WebClient.DownloadString($url)
页:
[1]