I have two .bat
files to enable and disable proxy through registry:
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 ProxyEnable /t REG_DWORD /d 0 /f
However the only way to make them work is to open up Internet Options and open up the LAN Settings tab.
The changes are made, but it's as if they aren't being applied/saved.
Is there a way I can do this through a command etc.
In my case Internet Explorer is disabled so terminating iexplore.exe first is not possible as it's not runnung, and restarting explorer.exe each time is undesirable. But I have found out that at least in Windows 7 proxy settings refresh the moment you click OK in the 'LAN settings' window inside Internet Options.
As I was unable to find any other way to do this using command prompt, I wrote a simple AutoHotkey script that clicks all the necessary buttons automatically. The only downside is that this happens in the foreground, changing window focus, and there is no way to minimize or hide this that I'm aware of.
Enter this in run/command prompt or add to a bat file to open Internet Options window:
Run this AHK script before opening Internet Options window because script waits for the window to appear and may not work if the window already exists: