Proxy Settings

netsh winhttp import proxy source=ie

netsh winhttp reset proxy

Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings

Proxy off:
Set-ItemProperty -Path ‘HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings’ -Name ProxyEnable -Value 0

Proxy on:
Set-ItemProperty -Path ‘HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings’ -Name ProxyEnable -Value 1

Over ride:
Set-ItemProperty -Path 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings' -Name 'ProxyOverride' -Value 'www.msn.com;www.google.com;www.southeasternmc.org;www.youtube.com;www.haroldb.com'




Set-ItemProperty -Path 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings' -Name 'ProxyServer' -Value 'http=127.0.0.1:80;https=127.0.0.1:80;ftp=127.0.0.1:80'