Answers for "powershell script to download file from url and install"

C
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:USERPROFILEDownloads7zip1900.msi");
Posted by: Guest on March-22-2020

Code answers related to "powershell script to download file from url and install"

Code answers related to "C"

Browse Popular Code Answers by Language