Koozali.org: home of the SME Server

Force Proxy Use

Jim P BeVard

Force Proxy Use
« on: March 16, 2003, 02:27:13 AM »
Is there a way to force all computers on the network to use the proxy, disallow normal access?

gbl

Re: Force Proxy Use
« Reply #1 on: March 16, 2003, 09:17:32 PM »
If you use Windows you can assign a ProxyServer during the Loginscript.
Than disable the ViewRight to the Networkpanel in IE.

Jim P BeVard

Re: Force Proxy Use
« Reply #2 on: March 16, 2003, 11:28:50 PM »
Thanks for the help.. This did the trick in the netlogon.bat.

REG ADD "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel" /f
REG ADD "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel" /v Proxy /t REG_DWORD /d 1 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "proxy.servername:8080" /f

Again, thanks for the help.