Horje
invoke-webrequest download file Code Example
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");
invoke-webrequest download file
$url = "http://mirror.internode.on.net/pub/test/10meg.test"
$output = "$PSScriptRoot\10meg.test"

Invoke-WebRequest -Uri $url -OutFile $output




16

Related
how to download file in powershell Code Example how to download file in powershell Code Example
see if two strings are equal in C Code Example see if two strings are equal in C Code Example
how to get user input in c Code Example how to get user input in c Code Example
install zoom on ubuntu Code Example install zoom on ubuntu Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10