Saturday, 15 December 2012

How to block proxy in IE through Regedit.?

Issue: - How to block proxy in IE through Regedit?

In our company we are using not using AD thogh all computers are in workgroup.
I need to block Proxy so that user can’t give the proxy server ip to the IE. I want to block Proxy setting itself.

 
 
Ans:- For this go to registry editor, OR Goto Run type “ Regedit” without quote hit enter, Goto "HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Internet Explorer\Control Panel" create a new Dword and give number 1 Value to it.
                                                                       OR
Open notepad copy the below Code and paste it in notepad and save it as .bat extension.
Then go to particular desktop and Run as Administrator mode.
Code for Disable Proxy Settings:-
@echo off
REG add "HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Internet Explorer\Control Panel" /v Proxy /t REG_DWORD /d 1 /f
 
Code for Enable Proxy Settings:-
@echo off
REG add "HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Internet Explorer\Control Panel" /v Proxy /t REG_DWORD /d 0 /f
                                                                                                                                                                   

No comments: