I want to create a batch file to remove Internet Explorer proxy settings check box. Not to grey it out - but to remove IE from using proxy settings. Anyone got any scripts for me?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Setting proxy settings:

  • .reg file:

    Windows Registry Editor Version 5.00
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
    "ProxyServer"="xxx.xxx.xxx.xxx:xxxx"
    "ProxyOverride"="<local>"
    "ProxyEnable"=dword:00000001
    
  • .vbs file:

    set wshshell = createobject("Wscript.shell")
    WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnable", 1, "REG_DWORD"
    WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyServer","192.168.001.250:80"
    WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyOverride","<local>"
    wshshell.popup "Proxy Example set.",3,"Messagebox"
    
  • but why not use Group Policy?

link|improve this answer
I can add the use of the proxy server, but in GP how do you remove the use of proxy? – The Woo Sep 9 '09 at 2:35
just unchecked the box "Enable Proxy Settings" in GPO? If that doesn't help, try making the change in the 'User Config>Windows Settings>IE Maintenance>Connection settings. Select 'Import the current connection settings from this machine' Choose LAN Settings and modify them to what you need. I would leave all boxes unchecked. Apply the settings and run a GPupdate /force. Check the logs for any errors and test on a client PC. – brengo Sep 9 '09 at 7:13
feedback

Using batch it is really easy to change IE PROXY settings frequently whenever required. Even you can disable the proxy settings using it. However I created the batch named PROXY Customization to resolve these issues.Please visit the link http://techsolutionpoint.blogspot.co...-automate.html to download the product. You will only required to change change the PROXY address & port as your own. That's all. It is free.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.