$client = new-object System.Net.WebClient
$client.DownloadFile("http://www.domain.com/file.txt","C:\stuff\whatever.txt")
This is good if you want to download an XML file, now that you have this file you can do some formatting.
$client = new-object System.Net.WebClient
$client.DownloadFile("http://www.domain.com/file.txt","C:\stuff\whatever.txt")
This is good if you want to download an XML file, now that you have this file you can do some formatting.
Discussion
No comments yet.