How to: check a computers Processor information includes cores via PowerShell to compare with Snow Inventory Agent
- The purpose of this article is to provide a PowerShell script that will output the computers current Processor information and the current core count.
- This can be especially useful when troubleshooting why a Snow Inventory Agent collects certain processor information.
- Run the PowerShell script below:
Get-WmiObject -Class Win32_Processor -ComputerName. | Select-Object -Property PSComputerName,DeviceID,Name,NumberOfCores,NumberOfEnabledCore,NumberOfLogicalProcessors
- An example output:
Was this helpful?
© 2026 Flexera. All rights reserved.