Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 258 Bytes

PowerShell.md

File metadata and controls

8 lines (6 loc) · 258 Bytes

PowerShell

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