Answers for "powershell download a file from url"

2

powershell download a file from url

$Link = "https://www.7-zip.org/a/7z1900-x64.msi"
$WebClient = New-Object System.Net.WebClient
$WebClient.DownloadFile("$Link","$env:USERPROFILE\Downloads\7zip1900.msi");
Posted by: Guest on March-22-2020

Code answers related to "powershell download a file from url"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language