Jump to content

Recommended Posts

Posted

Watch out though - IE 10 and above group policy settings need to be managed from a Windows 2012 Server or Windows 8 machine. They are not available on a Windows 7 or 2008 server. I just installed the admin tools on 2012 server and remote in to do any IE policy settings.

Wally

Posted (edited)

But.. Here is your script.

 

I'd do a reg entry (Proxyon.reg)

 

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000001
"ProxyServer"="10.0.0.20:8080"

 

And then use a .bat to merge it:

 

@ ECHO OFF

ECHO.
ECHO.
ECHO Applying school proxy settings, please wait...
ECHO.
ECHO.
regedit /s proxyon.reg
ECHO.
ECHO.
ECHO School proxy settings applied succesfully!
ECHO.
ECHO.
EXIT

Edited by fairm010
Posted

If you're unable to use GPP (I written about this in the past on Edugeek), the alternative is a regedit and a batch file to install/run the file silently at logon.

 

Something like:

 

Windows Registry Editor Version 5.00

 

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000001
"ProxyOverride"="localhost;127.0.0.1"
"ProxyServer"="10.0.0.20:8080"

 

In your login script add:

 

regedit /s \\servername\netlogon\proxy\proxy.reg

  • Thanks 2
Posted

I'd go to this key in the registry, having all the proxy settings entered as you want in IE. Then export the key an use that with your logon script.

 

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]

Posted
And just to clarify, this works with Windows XP onwards using IE8, IE9, IE10 and IE11. The settings in this area haven't changed at all. Just make sure you have GPP extensions installed on XP clients if applicable.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...