It looks like you're new here. If you want to get involved, click one of these buttons!
$WQL = "Select * FROM Win32_Processor"
$WMI = Get-WMIObject -Namespace "root\cimv2" -Query $WQL
$WMI
$WQL = "SELECT * FROM Win32_DiskDrive"
$WMI = Get-WMIObject -Namespace "root\cimv2" -Query $WQL
$WMI
Important: when specifying a device ID in monitor definition, make sure you type every backslash twice. I.e., if physical device ID is "\\.\PHYSICALDRIVE0", enter "\\\\.\\PHYSICALDRIVE0" in monitor definition (as first parameter of the script).wmic nic list brief /format:list
$WQL = "SELECT * FROM Win32_PhysicalMemory"
$WMI = Get-WMIObject -Namespace "root\cimv2" -Query $WQL
$WMI
Clone monitor and adjust device ID to monitor another chip.$WQL = "SELECT * FROM MSAcpi_ThermalZoneTemperature"
$WMI = Get-WMIObject -Namespace "root\wmi" -Query $WQL
$WMI
Important: when specifying a device ID in monitor definition, make sure you type every backslash twice.$WQL = "SELECT * FROM Win32_DesktopMonitor"
$WMI = Get-WMIObject -Namespace "root\cimv2" -Query $WQL
$WMI
wmic printer list brief /format:list