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 )
A personal technical blog
I made a change in the blogger configuration to ease the later work when blogging. It is possible that older entries are not correctly formatted.
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 )