2021-05-07

Download a file in powershell

Here is a quick way to download a file in powershell:

Invoke-WebRequest -Uri <source> -OutFile <destination>

comment: