Apr 22, 2008 #1 mrgulic Technical User Sep 18, 2001 248 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 Dec 11, 2002 20 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