Commander

Copy-ready command templates for common penetration testing tools. Select a tool, fill in the parameters, copy, paste, profit.

Invoke-WebRequest

↗ docs

PowerShell cmdlet for downloading files and making HTTP requests

downloadtransferpowershellwindowshttp

Download File

Download a file from URL and save to disk.

Invoke-WebRequest -Uri -OutFile

Download File (Basic Parsing)

Download using basic parsing to avoid Internet Explorer dependency.

Invoke-WebRequest -Uri -OutFile -UseBasicParsing

Download (iwr alias)

Short alias form of Invoke-WebRequest.

iwr -Uri -OutFile -UseBasicParsing

Download via .NET WebClient

Alternative download method using System.Net.WebClient.

(New-Object System.Net.WebClient).DownloadFile('', '')