Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Registry key for global proxy settings for Internet Explorer 10 on Windows 8

I have a program that sets proxy settings and it has worked through prior versions of Windows until Windows 8 and IE 10. It sets the keys below. In Windows 8, other browsers (like firefox) recognize the change and use the proxy settings. For IE 10, the global policy goes into effect (settings greyed out) but not the proxy settings themselves. If I set ProxySettingsPerUser to 1 and copy the same keys inth HKCU, then IE uses them for the current user ... but I need this to cover all users.

HKLM "SOFTWARE\Policies\Microsoft\Internet Explorer\Control Panel" "Proxy" = 1  
HKLM "SOFTWARE\Policies\Microsoft\Internet Explorer\Control Panel" "AutoConfig" = 1  
HKLM "SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings" "ProxySettingsPerUser" = 0  
HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings" "DialupUseLanSettings" = 1  
HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings" "WarnOnIntranet" = 0  
HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings" "ProxyEnable" = 1  
HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings" "MigrateProxy" = 1  
HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings" "ProxyServer" = <server name>  
HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings" "ProxyOverride" = <list of exceptions>
like image 294
Xi Vix Avatar asked Dec 20 '12 22:12

Xi Vix


People also ask

Where are IE proxy settings in registry?

Navigate within the folders in regedit to "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings." You should see a setting called "ProxyEnable." Double-click it to edit it. Set it to 1 to enable a proxy server and 0 to disable one, connecting directly to the internet.

How do I find my proxy settings on Windows 8?

desktop, and click on the Settings charm. 2 (2) Click “Network”. (3) Click “View Connection Settings”. 3 (1) Click “Proxy” in the left-side column.


1 Answers

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings] "ProxySettingsPerUser"=dword:00000000

like image 123
HotRodAdmin Avatar answered Sep 28 '22 11:09

HotRodAdmin