使用命令行或 Powershell 脚本在 Windows 中关闭/打开代理服务器

使用命令行或 Powershell 脚本在 Windows 中关闭/打开代理服务器

是否有任何脚本可以使用代理服务器设置打开/关闭。我做了一些研究,但没有找到正确的答案。我试过这个,但没能成功。

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t 
REG_DWORD /d 0 /f

在此处输入图片描述

在此处输入图片描述

答案1

以下 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命令。

相关内容