All SCOM Machines
Powershell command to show names of all machines in SCOM
Reading Time: < 1 minuteSimple one-liner, very helpful though!
Import-Module OperationsManager; Get-SCOMGroup -DisplayName “All Windows Computers” | Get-SCOMClassInstance | sort DisplayName | FT DisplayName
This will output just the names of all machines in the “All Windows Computers” group, you can change that name to output the machine names of any other group as well.