Script for Disabling Proxy in IE

Open Notepad
Paste the following content and save as noproxy.vbs
 
Double click
 
********************
 
 
Const HKEY_CURRENT_USER = &H80000001
 
strComputer = “.”
Set objRegistry = GetObject(“winmgmts:\\” & strComputer & “\root\default:StdRegProv”)
 
strKeyPath = “SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings”
 
strValueName = “ProxyEnable”
dwValue = 0
objRegistry.SetDWORDValue HKEY_CURRENT_USER, strKeyPath, strValueName, dwValue

.