PowerShell: download webpage, Invoke-WebRequest, curl, wget
Here's how to download a webpage.
Invoke-WebRequest
# get a website content, save it as xx.html Invoke-WebRequest "google.com" -outfile xx.html
Invoke-WebRequesthas aliasiwr
curl
Windows 10 has curl builtin, at
C:/Windows/system32/curl.exe
Download file from web
- Linux: wget (download web page)
- Linux: curl (download web page)
- PowerShell: download webpage, Invoke-WebRequest, curl, wget