简体   繁体   中英

powershell equivalent for curl command

Looking for a powershell equivalent to the following CURL command:

curl -x "http://username:password@192.168.1.1:5001" "https://www.google.com"

Have looked online but could not find anything similar to this.

PowerShell 等效项是以下命令:

Invoke-Webrequest -Proxy "http://username:password@192.168.1.1:5001" -Uri "https://www.google.com"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM