There have been a few questions regarding how to enumerate the rules targeting a class. Here is a script you can save as a file. I named the script get-rulesforclass.ps1 param ([String] $className) $class = get-monitoringclass | where {$_.Name -eq $className}
Read More...