PoshTip #7 – How to retrieve a file from a given URL

PoshTip #7  – How to retrieve a file from a given URL

You can use Invoke-WebRequest to download files.

First method

To simply download a file through HTTP, you can use this command

wget "http://technet.microsoft.com/" -OutFile "C:\out.html"

wget is an alias for Invoke-WebRequest

Invoke-WebRequest -Uri "http://technet.microsoft.com" -OutFile "C:\out.html"

If the web server requires authentication, you have to use the -Credential parameter

Second method

Use the .NET WebClient object

$WebClient = New-Object System.Net.WebClient
$WebClient.DownloadFile("http://technet.microsoft.com/","C:\out.html")
About Nicolas 282 Articles
I work as an IT Production Manager, based in Paris (France) with a primary focus on Microsoft technologies. I have 10 years experience in administering Windows Servers. . I am a Microsoft MVP for Cloud & Datacenter Management. I also received the PowerShell Hero 2016 award by PowerShell.0rg. And finally, I am "MCSE: Cloud Platform and Infrastructure", "MCSA: Windows Servers", "Administering & Deploying SCCM", and CheckPoint CCSA certified.