VB88 Asked: 2022-08-17 06:38:44 +0800 CST2022-08-17 06:38:44 +0800 CST 2022-08-17 06:38:44 +0800 CST 在 Windows 中使用代理服务器关闭/打开命令行或 Powershell 脚本 772 是否有任何脚本可以使用代理服务器设置打开/关闭。我做了一些研究,但没有找到正确的答案。我试过这个,但没能成功。 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f cmd.exe 1 个回答 Voted Best Answer harrymc 2022-08-17T06:52:38+08:002022-08-17T06:52:38+08:00 以下 PowerShell 脚本将禁用代理: $regKey="HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" Set-ItemProperty -path $regKey ProxyEnable -value 0 -ErrorAction Stop Set-ItemProperty -path $regKey ProxyServer -value "" -ErrorAction Stop Set-ItemProperty -path $regKey AutoConfigURL -Value "" -ErrorAction Stop Write-Output "Proxy is now Disabled" 如果需要,您可以轻松地将此代码转换为reg命令。
以下 PowerShell 脚本将禁用代理:
如果需要,您可以轻松地将此代码转换为
reg
命令。