如何设置“自动检测设置”通过命令行代理?

发布于 2024-12-11 17:09:45 字数 54 浏览 0 评论 0原文

我正在尝试使用 netsh winhttp 命令设置“自动检测设置”。但我找不到设置它的方法。

I am trying to set "automatically detect settings" using netsh winhttp command. But I could not find a way to set it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尬尬 2024-12-18 17:09:45

您可以这样做:

  • 启用“自动检测设置”

    REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoDetect /t REG_DWORD /d 1 /f
    
  • 禁用“自动检测设置”

    REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoDetect /t REG_DWORD /d 0 /f
    

You can do it with this:

  • To Enable 'Automatically Detect Settings'

    REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoDetect /t REG_DWORD /d 1 /f
    
  • To Disable 'Automatically Detect Settings'

    REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v AutoDetect /t REG_DWORD /d 0 /f
    
演多会厌 2024-12-18 17:09:45

AFAIK 没有全局“自动检测设置”,也没有 netsh 命令。
该设置特定于浏览器。
即 Internet Explorer 是使用 reg 键配置的。
请参阅以下示例:
http://support.microsoft.com/kb/819961

一旦您知道正确的注册表项,您就可以使用reg命令来设置它。

AFAIK there is no global "automatically detect settings" neither a netsh command for this.
the setting is specific to a browser.
i.e. the internet explorer is configured using reg keys.
see the following examples:
http://support.microsoft.com/kb/819961

once you know the right regkey you can use the reg command to set it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文