How to export a list of SCOM 2012 Agent Managed Devices to a CSV File
I had a requirement today to export a list of all the SCOM / OpsMgr 2012 agent managed devices to a CSV file.
All that you need is a single line of PowerShell as follows:
get-scomagent|export-csv -notype c:\scomagentdevices.csv
PowerShell is your friend!
View Post










