This little thing will search through, and get all subscribers containing your searchword in any subscription you may have set up in SCOM.
param( [String]$searchword ) $sub = Get-SCOMNotificationSubscription | select displayname,torecipients write-host "Searchword: ""$searchword"" exists in the following subscriptions:" foreach ($s in $sub){ $recipient = $s.torecipients.name if ($recipient -like "$searchword"){ write-host ""$s.displayname"" } }
– F