Skip to content

Instantly share code, notes, and snippets.

@newkedison
Created June 29, 2012 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save newkedison/3014967 to your computer and use it in GitHub Desktop.
Save newkedison/3014967 to your computer and use it in GitHub Desktop.
change IE proxy by bat
@echo off
echo clearing IE proxy
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "" /f
@echo off
echo changing IE proxy
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 "127.0.0.1:8087" /f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment