相当于curl命令的powershell

时间:2020-02-20 09:44:24

标签: powershell curl

寻找与以下CURL命令等效的powershell:

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

已在线查看,但找不到与此类似的内容。

1 个答案:

答案 0 :(得分:2)

PowerShell等效项为以下命令:

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