Find device by Hardware ID in Device Manager?

10,171

Solution 1

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

Solution 2

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

Solution 3

There is a nice little tool from Microsoft that lets you list all devices called Devcon (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

Share:
10,171
BlackShift
Author by

BlackShift

Voi use voi/void/voids/voids/voidself as pronouns. E.g. "Voids answer is wrong. Lets correct it for void. Voi wouldn't mind." Voi is uncomfortable with the gender-specific pronouns 'he' and 'she', not because voi dislikes voids gender assigned at birth, but because it is irrelevant noise and none of anyone's business. Furthermore, people are less like individuals and more like elements of a collective, certainly users at StackExchange sites. The use of dualistic pronouns like 'I', 'we' and 'you' do not reflect the transcendental nature of this site (and society as a whole). Voi therefore prefer to use voi/void/voids/voids/voidself also for first and second person pronouns. Please use voi/void/voids/voids/voidself when referring to void. Not everyone has the same worldview, so it is not offending to void if voi uses other pronouns when referring to voidself. Voi will use preferred pronouns when referring to others if known.

Updated on September 18, 2022

Comments

  • BlackShift
    BlackShift over 1 year

    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.

  • BlackShift
    BlackShift over 5 years
    That is certainly a useful tool. It only shows devices actually attached though. So any disconnected USB device will not show up, even if the drivers are installed :-(.
  • BlackShift
    BlackShift about 3 years
    DevManView is perfect! It allows sorting on HW ID, shows disconnected devices, and can uninstall drivers. Thanks for nirsoft!