You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
useful scripts to disenable the IE proxy by modifying the related reg value using the _winreg library
written by ben
2015/05/25
'''
import os
import _winreg
def disableproxy():
key=_winreg.OpenKey(_winreg.HKEY_CURRENT_USER,r'Software\Microsoft\Windows\CurrentVersion\Internet Settings',0,_winreg.KEY_ALL_ACCESS) #open the related reg
_winreg.SetValueEx(key,"ProxyEnable",0,_winreg.REG_DWORD,0) #modify the "ProxyEnable" reg value to disenable the proxy