This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
Hi All,
Can anyone please share the info how can i list the threshold values for monitors, rules , overrides for a particular management pack in SCOM R2 environment.
Any help,
Rgs,
Retrieve monitor/ rule apply to the computer Get-Rule | select-object @{Name="MP";Expression={ foreach-object {$_.GetManagementPack().DisplayName }}},DisplayName,enabled | sort-object -property MP | export-csv "c:\temp\rules.csv"
Get-monitor | select-object @{Name="MP";Expression={ foreach-object {$_.GetManagementPack().DisplayName }}},DisplayName,enabled | sort-object -property MP | export-csv "c:\temp\rules.csv"
Get SCOM monitor/rue threshold http://blog.theinfraguys.com/2012/02/retrieving-scom-monitor-thresholds-by.html http://social.technet.microsoft.com/Forums/en-US/operationsmanagermgmtpacks/thread/7e85c5cc-257f-4afb-ad62-48e3439daa3f Powershell to export override to CSV file http://gallery.technet.microsoft.com/SCOM-2012-Export-Overrides-dbfe9e27
Roger
i m sorry to ask the incomplete question, will this tool work with sealed management pack, also.
Powershell command to export all the sealed management packs in the environment.