use o seguinte código PowerShell para editar as chaves do Registro para ativar as configurações de proxy do IE:
$reg = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings"
$settings = Get-ItemProperty -Path $reg
Configure o endereço do servidor proxy e ative-o:
Set-ItemProperty -Path $reg -Name ProxyServer -Value "proxy.example.org:8080"
Set-ItemProperty -Path $reg -Name ProxyEnable -Value 1
Para desativar o proxy, basta ajustar o valor ProxyEnable
para 0
:
Set-ItemProperty -Path $reg -Name ProxyEnable -Value 0
Testado no cliente Windows 10.