What key in windows registry disables IE connection parameter “Automatically Detect Settings”?

后端 未结 11 1751
没有蜡笔的小新
没有蜡笔的小新 2020-12-04 18:15

I\'m trying to set all the connection settings in IE.

I\'ve found how to modify most of them, in the path :

HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\

11条回答
  •  醉梦人生
    2020-12-04 18:52

    Another way to control this setting is by using an undocumented registry key AutoDetect=0 mentioned on this blog post:

    Registry Key : HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\

    DWORD AutoDetect = 0 or 1

    So the .reg file to turn it off would look like:

    Windows Registry Editor Version 5.00
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
    "AutoDetect"=dword:00000000
    

提交回复
热议问题