SCOM – Enable Agent Proxy Setting for all Installed Agents

 

Using SCOM 2012 PowerShell Module:

 

Get-SCOMAgent
| where-object
{$_.ProxyingEnabled –match "false"} | Enable-SCOMAgentProxy


Using SCOM 2007 PowerShell Snap-in:

Get-agent | where-object {$_.ProxyingEnabled -match "false"}| foreach {$_.ProxyingEnabled = $true; $_.applyChanges()}

Leave a Comment

Your email address will not be published. Required fields are marked *