A personal technical blog
A simple script to download a file:
$url="http://hostname/xxxxFiletoDownload" $thisir =pwd $path = $thisdir.toString() "\xxxxFiletoDownload" $client = new-object System.Net.WebClient $client.DownloadFile( $url, $path )