回答:
次のPowerShellコードを使用して、IEプロキシ設定を有効にするためのレジストリキーを編集します。
$reg = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings"
$settings = Get-ItemProperty -Path $reg
プロキシサーバーのアドレスを構成し、有効にします。
Set-ItemProperty -Path $reg -Name ProxyServer -Value "proxy.example.org:8080"
Set-ItemProperty -Path $reg -Name ProxyEnable -Value 1
プロキシを無効にするには、ProxyEnable
値を0
次のように調整します。
Set-ItemProperty -Path $reg -Name ProxyEnable -Value 0
Windows 10クライアントでテスト済み。