list of all monitored
Hi all,
We have 2000+ servers and 7 Management server ,1 RMS server . We have configured Dell RAC , HP servers, Network devices and Unix machines. Can any one help me how to get all the list of monitored objects and i want to export those details to excel file.
Please help me
November 22nd, 2010 2:33am
Hello,
You can do this with Powershell Script:
Export all monitoring objects and classes to text and CSV files
Get-MonitoringObject | out-file c:\temp\all-monitoring-objects.txt;
Get-MonitoringObject | export-csv c:\temp\all-monitoring-objects.csv -noTypeInformation;
Get-MonitoringClass | out-file c:\temp\all-monitoring-classes.txt;
Get-MonitoringClass | export-csv c:\temp\all-monitoring-classes.csv -noTypeInformation;
For the details, please click the lin below:
System Center Operations Manager 2007: Powershell Scripts
http://wiki.slothx.net/index.php?title=System_Center_Operations_Manager_2007:_Powershell_Scripts#Export_all_monitoring_objects_and_classes_to_text_and_CSV_files
Thanks, Yog Li -- Please remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
Free Windows Admin Tool Kit Click here and download it now
November 24th, 2010 7:03am