Add support for proxies
Closed this issue · 1 comments
rick-bennett commented
There doesn't seem to be an existing method to configure the proxy settings. For those with devices behind firewalls, this would be a helpful enhancement to have (included before the initial sync).
$config = (Get-WsusServer).GetConfiguration()
$config.ProxyName = ${proxy_name}
$config.ProxyServerPort = ${proxy_port}
$config.UseProxy = $true
$config.Save()
TraGicCode commented
Hey @RFBennet ,
would you be able to submit a PR with this added feature?