ie6 settings

  • Thread starter Thread starter Shady
  • Start date Start date
S

Shady

How can i set ie6 on a laptop so that everybody uses the sames settting
proxy server etc?
 
Try changing the [HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Internet Settings] in the registry and add the following values

"ProxyEnable"=dword:0000000
"ProxyServer"="192.168.10.10:80

of course, change the IP and port to your proxy server

Now everytime a new user logs on... they will get the correct proxy settings. You can also import these settings using a script or regedit /s "proxy.reg" at logon so it will update users already configured for the system

Cheers....


----- Shady wrote: ----

How can i set ie6 on a laptop so that everybody uses the sames setttin
proxy server etc
 
Close, but not quite :-)

Click Start, Run and enter REGEDIT Go to the Registry keys indicated and modify or create the values indicated.

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings

ProxyEnable
DWord
1 = Enabled, 0 = Disabled

ProxyServer
String
address/hostname:port
Examples:
proxy.mynetwork.com:82
192.168.222.221:82

Bypass Proxy for local addresses:

ProxyOverride
String value
Contents: <local>

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings

ProxySettingsPerUser
DWord
1 = Per user proxy settings, 0 = Per Machine proxy settings
 
Back
Top