Q:

powershell download file

$url = "http://mirror.internode.on.net/pub/test/10meg.test"
$output = "$PSScriptRoot\10meg.test"

Invoke-WebRequest -Uri $url -OutFile $output
3
Invoke-WebRequest URL -OutFile c:\file.ext
2
$Link = "https://www.7-zip.org/a/7z1900-x64.msi"
$WebClient = New-Object System.Net.WebClient
$WebClient.DownloadFile("$Link","$env:USERPROFILE\Downloads\7zip1900.msi");
2

New to Communities?

Join the community