I’m currently trying to find a way to automatically create overrides for Object Discoveries targeted to Windows Servers. More to come soon I hope ;-)
But before doing that I wanted to find all Object Discoveries targeted to Windows Server first. And with the help of some PowerShell friends (first Jeremy Pavleck then Marco Shaw) I was able to find a way to do that with PowerShell.
Just open the OpsMgr Command Shell and run the next command. (change the class if you want to).
get-discovery | ? {$_.Target -match $(get-monitoringclass -Name "Microsoft.Windows.Server.Computer").Id} | ft Name, DisplayName
You can download the script from the PowerShell Code Repository.
PingBack from http://ianblythmanagement.wordpress.com/2008/10/21/updated-windows-os-mp/