gpt4 book ai didi

powershell http get 不使用代理

转载 作者:行者123 更新时间:2023-12-02 22:35:28 26 4
gpt4 key购买 nike

我有脚本来获取 HTTP 内容,我需要 baypass 代理(直接连接到网络服务器 IP)。
是否可以不更改 Windows 中的寄存器?此代码正在通过系统中定义的代理。
谢谢你的建议

此致。

$url='https://10.10.10.10/check';
$webClient = new-object System.Net.WebClient;
$output = $webClient.DownloadString($url)

最佳答案

根据documentation您必须将代理设置为空白代理实例。尝试这个:

$url = "https://10.10.10.10/check"
$webClient = New-Object System.Net.WebClient
$webClient.Proxy = [System.Net.GlobalProxySelection]::GetEmptyWebProxy()
$output = $webClient.DownloadString($url)

关于powershell http get 不使用代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13274640/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com