M HYPE SPLASH
// updates

Find device by Hardware ID in Device Manager?

By Sarah Scott

Is there a way to search through the Windows 10 Device Manager, e.g. by Hardware ID? (Or is there another tool that can do this?)

I know (part of) the Hardware ID of a device I have, e.g. it starts with "USB\VID_1C88". My suspicion is that this device is causing trouble, so I want to uninstall all drivers associated with it.

2

3 Answers

There are websites, I've listed at the bottom, that archive H/W ID's so that COULD provide insight as well as an app. nirsoft DevManView & USBDeview can do this under a column called 'Instance ID'. Apparently USBDeview can show historical devices that are disconnected as well. I don't know nirsoft, his tools are just my go to :)nirsoft devmanview

1

I used a tool called Hardware Identify . It lists all installed hardware devices on the computer and displays information about each device. You could check the device name by Hardware ID like this below:enter image description here

1

There is a nice little tool from Microsoft that lets you list all devices calledDevcon (Device Console). In combination with Powershell it is quite easy to identify devices e.g.

 devcon64.exe hwids * | Select-String "YOUR HARDWARE ID" -Context 5

Devcon is available as portable app on Chocolatey

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy