Windows 7 Know How - ProxyCFG missing
See:
myitforum.com/cs2/blogs/robm/archive/2010/01/08/proxycfg-on-vista-and-win2008.aspx
In Windows 7 (and Vista) the ProxyCFG tool is missing. This is sad news. However it can be replaced by netsh.
Old commands:
proxycfg
proxycfg -d
proxycfg -u
proxycfg -p proxy.example.com:8080 <local>;10.0.0.0/8;172.16.0.0/12;192.168.0.0/16;example.com
New commands:
netsh winhttp show proxy
netsh winhttp reset proxy
netsh winhttp import proxy ie
netsh winhttp set proxy proxy-server="proxy.example.com:8080" bypass-list="<local>;10.0.0.0/8;172.16.0.0/12;192.168.0.0/16;example.com"
This commands must be run in cmd.exe which is run as administrator.