从命令提示符中删除代理服务器

从命令提示符中删除代理服务器

我已经为我的 Internet 浏览器设置了代理服务器。现在我需要从 PowerShell 中禁用它。如何实现?我运行下面的命令,但这没有帮助:

PS C:\WINDOWS\system32> netsh winhttp reset proxy

Current WinHTTP proxy settings:

    Direct access (no proxy server).

在此处输入图片描述

答案1

这非常简单,只需运行这些命令,您需要管理员权限才能执行此操作:

Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name ProxyEnable -Type DWord -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name ProxyServer -Type String -Value ""

那么就应该这么做。


进一步阅读:Internet 设置注册表

相关内容