Apr 22, 2008 #1 mrgulic Technical User Joined Sep 18, 2001 Messages 248 Location US How do you list all the possible alerts that SCOM could send based on the managment packs installed. Thanks
How do you list all the possible alerts that SCOM could send based on the managment packs installed. Thanks
Aug 14, 2008 #2 Reyn MIS Joined Dec 11, 2002 Messages 20 Location US Try running this in powershell You will have to modify the "ManagementPack" get-rule | select-object DisplayName, @{ Name = "ManagementPack"; Expression={$_.GetManagementPack().DisplayName}} | export-csv C:\folder name\filename.csv Upvote 0 Downvote
Try running this in powershell You will have to modify the "ManagementPack" get-rule | select-object DisplayName, @{ Name = "ManagementPack"; Expression={$_.GetManagementPack().DisplayName}} | export-csv C:\folder name\filename.csv