This page contains information about using PowerShell for Windows system administration.
Download file using PowerShell: $URL = http://url.com/file.txt $Path = C:\Users\myser\Downloads\file.txt Invoke-WebRequest -URI $URL -OutFile $Path
$URL = http://url.com/file.txt
$Path = C:\Users\myser\Downloads\file.txt
Invoke-WebRequest -URI $URL -OutFile $Path
Last updated 2 years ago