Hey y’all,
I’ve been trying to cobble together some PowerShell code to detect the presence of NPU/GPU processors in a computer. Unfortunately, I don’t own one!!! YET.
Any one out there what to test this?
# Query Device Manager for known NPU device names or categories $npus = Get-PnpDevice | Where-Object { ($_.Class -eq 'Processor' -or $_.Class -eq 'Display') -and ( ($_.FriendlyName -match 'NPU') -or ($_.FriendlyName -match 'Neural Processor') -or ($_.FriendlyName -match 'Intel AI Boost') -or ($_.FriendlyName -match 'AMD IPU Device') -or ($_.Class -eq 'NeuralProcessors')) } if ($npus) { Write-Output "NPU detected:" $npus | Select-Object -Property FriendlyName, Manufacturer, Status | Format-Table -AutoSize } else { Write-Output "No NPU detected on this system." }
Please run in the PowerShell ISE and post your results.