CimCmdlets
https://docs.microsoft.com/en-us/powershell/module/cimcmdlets
Commands
Get-CimClass – Gets a list of CIM classes in a specific namespace
https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/get-cimclass
Get-CimClass -ClassName *disk*
Get-CimClass -ClassName Win32* -MethodName Term*
Get-CimInstance – Gets the CIM instances of a class from a CIM server
https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/get-ciminstance
Get-CimInstance -ClassName Win32_ComputerSystem -ComputerName Server01,Server02