Fetching Web files with Powershell

From Answers @ O'Reilly:

PS > $source = "http://www.leeholmes.com/favicon.ico" PS > $destination = "c:\emp avicon.ico" PS > PS > $wc = New-Object System.Net.WebClient PS > $wc.DownloadFile($source, $destination)

N:: on 09/05/2010