Tag Archives: enable proxy

Scom Agent Proxying

2 simple powershell commands to enable or disable proxying for scom agents in your management group:- ENABLE Get-SCOMAgent | where {$_.ProxyingEnabled.Value -eq $False} | Enable-SCOMAgentProxy -Confirm   DISABLE Get-SCOMAgent | where {$_.ProxyingEnabled.Value -eq $True} | Disable-SCOMAgentProxy -Confirm

Posted in Misc Stuff | Tagged , , , , , , , , , , , | Leave a comment

SCOM 2012 Enable Proxy Powershell

If you wish to enable proxy on all your monitored servers you can do this manually which can be laborious if you have alot of monitored servers, alternatively you can run this powershell to do it for you. Just copy the text below and … Continue reading

Posted in SCOM 2012 SP1 | Tagged , , , , , | Leave a comment