You can manually turn on Agent Proxy for all agents using PowerShell:
get-SCOMagent | where {$_.ProxyingEnabled -match "False"} | Enable-SCOMAgentProxy
How about making it the default setting? Any new agent deployed would automatically have proxy enabled?
add-pssnapin "Microsoft.EnterpriseManagement.OperationsManager.Client"; new-managementGroupConnection -ConnectionString:scomserver.domain.com; set-location "OperationsManagerMonitoring::"; Set-DefaultSetting -Name HealthService\ProxyingEnabled -Value True
Thank you Kevin Holman for posting this. View article...
Connect w