Paperlined.org
rosetta_stone > os
document updated 2 months ago, on Apr 5, 2026

List USB devices

Windows 10 and higher

In PowerShell:

Get-PnpDevice -PresentOnly | Where-Object {$_.InstanceId -match '^USB'} | Select-Object Status,Present,Class,FriendlyName,Service,InstanceId | Format-Table -AutoSize -Wrap

 

At the command prompt:

pnputil /enum-devices /connected /class USB

Manual page for pnputil.

Other utilities