批处理文件/别名/powershell 用于激活/停用 IE 11 代理服务器

批处理文件/别名/powershell 用于激活/停用 IE 11 代理服务器

我想要一个批处理文件/cmd 别名/powershell 命令来打开和关闭 IE11 中的代理服务器的使用,因此基本上要选中/取消选中以下设置:IE->选项->连接->LAN->代理服务器复选框

答案1

使用以下 powershell 代码编辑注册表项以启用 IE 代理设置:

$reg = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings"
$settings = Get-ItemProperty -Path $reg

配置代理服务器地址并启用:

Set-ItemProperty -Path $reg -Name ProxyServer -Value "proxy.example.org:8080"
Set-ItemProperty -Path $reg -Name ProxyEnable -Value 1

要禁用代理,只需将ProxyEnable值调整为0

Set-ItemProperty -Path $reg -Name ProxyEnable -Value 0

在 Windows 10 客户端上测试。

相关内容