How to view computer ID, check hardware ID

Checking computer information, checking laptop or PC configuration helps users understand the hardware equipped on the computer. In addition to checking that basic information, finding the hardware ID is also necessary to easily look up information about the manufacturer and model of the hardware. This helps us to check the warranty or update drivers for the computer .

In addition, thanks to the hardware ID information including information about the manufacturer and model, you can check and diagnose hardware errors in addition to using hardware diagnostic tools such as Memory Diagnostic Tool, CrystalDiskInfo,... The following article will guide you to view the computer's ID and check the hardware ID.

Table of Contents

1. How to check computer ID

First, press the Windows + I key combination to open Windows Settings , then click System .

Switch to the new interface, click on About in the list on the left side of the screen.

How to view computer ID, check hardware ID

Look to the right content you will see the Device Specifications section and then you will see the Device ID section which is the computer ID .

How to view computer ID, check hardware ID

2. Instructions for finding Hardware ID using Device Manager

Step 1:

On the computer interface, press the Windows + R key combination and then press the keyword devmgmt.msc .

How to view computer ID, check hardware ID

Step 2:

In the Device Manager interface , find Display adapters , right-click on the device you want to check and select Properties .

How to view computer ID, check hardware ID

To display the new interface, click on Details .

How to view computer ID, check hardware ID

Step 3:

In this interface, in the Property section, we click on the drop-down arrow icon and then click on Hardware Ids .

How to view computer ID, check hardware ID

The result will show the hardware ID on the computer to help find the right driver for the computer.

How to view computer ID, check hardware ID

Step 4:

We copy the first ID and search on Google. The results will show us websites that support downloading drivers or you can add the driver after the string of characters to find it faster.

How to view computer ID, check hardware ID

3. Instructions for finding hardware ID using Command Prompt

Command Prompt is an amazing tool that lets you access most applications, configure system settings, and troubleshoot devices. You can also do other tricks with it, like checking the hardware ID of your device.

Let's see the steps you need to follow:

1. Press Win + R to open the Run command dialog box .

2. Type CMD and press Ctrl + Shift + Enter to open Command Prompt with admin rights .

3. Enter the following command to get a list of all your drivers and devices:

Dism /Online /Get-Drivers /all /Format:Table
How to view computer ID, check hardware ID
Display device information on Command Prompt

Now, let's say you want the hardware ID for your mouse. Here's how you can look it up:

1. Scroll down the Command Prompt results and find Mouse in the Class Name category .

2. In the same row, select the option that appears in the Published Name category.

How to view computer ID, check hardware ID
Select mouse options

In this case, the option in the Published Name category is msmouse.inf.

Now that you've found the Published Name result for your mouse, here's how you can use it to find the hardware ID:

1. Open a new Command Prompt window by following the previous steps.

2. Enter the following command and replace Published Name with the relevant command:

Dism /Online /Get-DriverInfo /Driver:Published Name

The example discovered earlier that the Published Name result for the mouse is msmouse.inf. The command would look like this:

Dism /Online /Get-DriverInfo /Driver:msmouse.inf

Now, press Enter after you have entered the correct command. From there, look for the Hardware ID option from the results.

How to view computer ID, check hardware ID
Select the Hardware ID option in the Command Prompt screen

4. Instructions for finding hardware ID using Powershell

Additionally, you can also check the hardware ID using Windows PowerShell . It is another amazing tool that allows you to run various commands.

Let's explore how you can check hardware ID using this tool:

1. Press Win + R to open the Run command dialog box.

2. Type PowerShell and press Ctrl + Shift + Enter to open a PowerShell window with admin rights .

3. Enter the following command to get a list of your drivers and devices:

Get-PnpDevice -PresentOnly | Sort-Object -Property “Class” | Format-Table -AutoSize
How to view computer ID, check hardware ID
PowerShell window displaying device information

Now, find your target device under the “FriendlyName” category.

For example, let's say your target device is a keyboard. In this case, the option that appears in the "FriendlyName" category for the keyboard is Standard PS/2 Keyboard .

Once you find your target device, check the Instance ID (the value that appears in the last column).

How to view computer ID, check hardware ID
Select the Keyboard option from the PowerShell command options

For the keyboard, the Instance ID is ACPI\IDEA0102\4&15E808EC&0.

Now that you've found the Instance ID, here's how you can use it to find the hardware ID:

1. Open a PowerShell window with admin rights following the previous steps.

2. Enter the following command and replace the Instance Id command with the relevant option:

Get-PnpDeviceProperty -InstanceId "Instance Id" | Format-Table -AutoSize

If using the Instance ID for the keyboard (ACPI\IDEA0102\4&15E808EC&0), the command would be as follows:

Get-PnpDeviceProperty -InstanceId "ACPI\IDEA0102\4&15E808EC&0" | Format-Table -AutoSize

Now, press Enter to run the command. From there, look for the DEVPKEY_Device_HardwareIds option in the KeyName category .

Next, look for the corresponding value in the Data category. The value that appears in this section is the hardware ID.

How to view computer ID, check hardware ID
Select the Hardware ID option on PowerShell

In this case, the hardware ID for the keyboard (which appears in the Data category) is ACPI\VEN_IDEA&DEV_0102.

5. How to find hardware ID using Windows Device Console

Device Console (DevCon) is a feature that shows you detailed information about the devices on your computer. It can also help you configure, install, remove, enable, or disable devices.

Interestingly, this tool allows you to view the hardware IDs of multiple apps at once. Unfortunately, Device Console does not come built-in to your device, which means you will need to download and install it first.

Let's see how you can install this tool and use it to check the hardware ID:

1. Download and install the Windows Drivers Kit from the Microsoft website. Once you are on the website, go to Step 2: Install the WDK section and select the one that is compatible with your device.

2. Once you have installed the tool, open File Explorer and navigate to This PC > Local Disk (C:) > Program Files (x86) > Windows Kits > 10 > Tools . If you are using Windows 11, the path will be This PC > Local Disk (C:) > Program Files (x86) > Windows Kits > 11 > Tools .

3. Go to the x64 (64-bit) folder if you are using a 64-bit device or the x86 (32-bit) folder if you are using a 32-bit PC. If you are unsure, check your Windows PC specifications first .

How to view computer ID, check hardware ID
Select the x64 folder in the Tools section

Once you are in the correct folder, follow these steps:

1. Click the File Explorer address bar.

2. Type CMD and press Enter. This will launch Command Prompt in the current folder.

How to view computer ID, check hardware ID
Type CMD command into File Explorer address bar

From there, type the following command into Command Prompt and press Enter :

devcon hwids *
How to view computer ID, check hardware ID
Show Hardware ID using DevCon

This will show you detailed information about all the devices on your computer. The results will also contain the hardware ID.

The example marked the hardware ID for Standard PS/2 Keyboard in the figure below.

How to view computer ID, check hardware ID
Select Hardware ID for Standard PS/2 Keyboard

Remember, if there are multiple hardware IDs, always select the first option. This means the hardware ID for the keyboard, in the example above, is ACPI\VEN_IDEA&DEV_0102.

If you want to explore the Device Console in detail, check out the different ways to use Dev Con on Microsoft's website.

Leave a Comment

Can Large Format Printing Ever Be Sustainable? The Answer Is Changing Fast

Can Large Format Printing Ever Be Sustainable? The Answer Is Changing Fast

Large format printing has long faced criticism for its environmental impact. Traditional substrates, solvent-based inks, and short-lived promotional campaigns have all contributed to the perception that eye-catching graphics come at a high environmental cost.

What Young Riders Should Know About Moving Their Motorcycles Across Cities

What Young Riders Should Know About Moving Their Motorcycles Across Cities

Long-distance travel can involve heavy traffic, changing weather conditions, and rider fatigue. If you are also dealing with the responsibilities of moving home, such as packing belongings or coordinating accommodation, a long ride may add unnecessary pressure to an already busy schedule.

Solving Microsoft Teams Shortcut Error Not Opening

Solving Microsoft Teams Shortcut Error Not Opening

Tired of Microsoft Teams shortcut error preventing you from opening the app? Follow our expert, step-by-step guide with the latest fixes for instant resolution. Works on Windows, Mac & web – no tech skills needed!

Solving Microsoft Teams Task Management Sync Error

Solving Microsoft Teams Task Management Sync Error

Tired of Microsoft Teams Task Management Sync Error halting your workflow? Follow our proven, step-by-step fixes to resolve sync issues fast and restore seamless task collaboration. No tech expertise needed!

Troubleshooting Microsoft Teams Wiki Error Formatting

Troubleshooting Microsoft Teams Wiki Error Formatting

Struggling with Microsoft Teams Wiki Error Formatting? This step-by-step guide reveals proven fixes for common wiki tab issues, ensuring smooth editing and collaboration in Teams. Get back to productive wikis fast!

How to Fix Microsoft Teams Installation Error for Linux

How to Fix Microsoft Teams Installation Error for Linux

Struggling with Microsoft Teams installation error on Linux? Discover step-by-step fixes for Ubuntu, Fedora & more. Resolve dependency issues, crashes, and errors quickly with our ultimate guide. Get Teams running smoothly today!

Solving Microsoft Teams Error Page Not Loading

Solving Microsoft Teams Error Page Not Loading

Struggling with Microsoft Teams "Error Page" not loading? Get step-by-step fixes for desktop, web, and mobile. Solve Microsoft Teams Error Page issues quickly and resume seamless teamwork today.

Solving Microsoft Teams Error Screenshot Issues

Solving Microsoft Teams Error Screenshot Issues

Tired of Microsoft Teams "Error Screenshot" blocking your workflow? Get proven, step-by-step solutions to resolve screenshot errors in Teams instantly and boost productivity. No tech skills needed!

How to Fix Microsoft Teams Error U User

How to Fix Microsoft Teams Error U User

Tired of Microsoft Teams "Error U" User blocking your chats? Get proven, step-by-step fixes to clear cache, reset, and restore seamless collaboration instantly.

Where are Microsoft Teams Registry Keys Located on Windows 11?

Where are Microsoft Teams Registry Keys Located on Windows 11?

Unlock the precise locations of Microsoft Teams registry keys on Windows 11. Step-by-step guide to find, access, and safely tweak them for optimal performance and troubleshooting. Essential for IT pros and Teams enthusiasts.