Windows 10 でプロキシ設定を コマンドラインから on/off する方法(powershell)

 2020/01/03 -  moriya -  ~1 Minute

OFF にする場合

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

ON にする場合

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

応用

Get-ItemProperty -Path ‘HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings’

参考URL

How To Modify Your Proxy Settings with Powershell