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

Solving Microsoft Teams Unexpected Error Startup

Solving Microsoft Teams Unexpected Error Startup

Tired of Microsoft Teams "Unexpected Error" crashing your startup? Follow our step-by-step guide with the latest fixes for Solving Microsoft Teams "Unexpected Error" Startup. Get back to productive meetings in minutes!

How to Fix Microsoft Teams For Linux Installation Error

How to Fix Microsoft Teams For Linux Installation Error

Frustrated by Microsoft Teams "For Linux" installation error? Discover proven, step-by-step solutions for Ubuntu, Debian, Fedora & more. Fix it fast and get seamless collaboration now!

How to Fix Microsoft Teams Password Error Forgot

How to Fix Microsoft Teams Password Error Forgot

Struggling with Microsoft Teams "Password Error" because you forgot your password? Follow our step-by-step guide on how to fix Microsoft Teams password error forgot issues quickly and securely. No tech skills needed!

Troubleshooting Microsoft Teams Image Error in Chat

Troubleshooting Microsoft Teams Image Error in Chat

Struggling with Microsoft Teams "Image Error" in chat? Discover proven step-by-step troubleshooting tips to resolve image display issues fast. No more frustration—get your chats working smoothly today!

How to Fix Microsoft Teams Free Subscription Error

How to Fix Microsoft Teams Free Subscription Error

Tired of the frustrating Microsoft Teams "Free" Subscription Error blocking your meetings? Discover proven, step-by-step solutions to resolve it fast and restore smooth teamwork. Works on latest versions!

How to Fix Microsoft Teams Web App Browser Error

How to Fix Microsoft Teams Web App Browser Error

Struggling with Microsoft Teams "Web App" Browser Error? Discover proven, step-by-step solutions to resolve it fast. Clear cache, update browser, and more for seamless Teams web app access. Works on latest browsers!

Troubleshooting Microsoft Teams Group Chat Not Loading

Troubleshooting Microsoft Teams Group Chat Not Loading

Struggling with Troubleshooting Microsoft Teams Group Chat Not Loading? Discover proven, step-by-step fixes for the most common issues to get your chats loading smoothly again. Quick wins for desktop, web, and mobile.

How to Fix Microsoft Teams Proxy Error Connection

How to Fix Microsoft Teams Proxy Error Connection

Tired of Microsoft Teams proxy error blocking your calls? Discover simple, step-by-step fixes to resolve proxy connection issues instantly. No tech expertise required – get back to seamless teamwork!

How to Fix Microsoft Teams Time Limit Error

How to Fix Microsoft Teams Time Limit Error

Tired of Microsoft Teams "Time Limit" Error crashing your meetings? Follow our proven, step-by-step guide to fix it quickly—update app, clear cache, and more for seamless collaboration. Works on latest versions!

How to Fix Microsoft Teams Layout Error After Update

How to Fix Microsoft Teams Layout Error After Update

Facing Microsoft Teams Layout Error after the latest update? Discover proven step-by-step fixes to resolve layout glitches, restore perfect UI, and boost productivity fast. No tech skills needed!

How to Fix Microsoft Teams Error K Security

How to Fix Microsoft Teams Error K Security

Struggling with Microsoft Teams "Error K" Security? Follow our step-by-step guide to fix it quickly—no tech expertise needed. Get back to seamless collaboration today!

How to Fix Microsoft Teams Update Error 0x80070002

How to Fix Microsoft Teams Update Error 0x80070002

Struggling with Microsoft Teams Update Error 0x80070002? Discover step-by-step fixes to resolve it quickly. Clear cache, repair files, and get back to seamless updates today!

Solving Microsoft Teams Web Error Browser Login

Solving Microsoft Teams Web Error Browser Login

Tired of Microsoft Teams "Web Error" blocking your browser login? Follow our step-by-step guide with proven fixes to resolve Teams web login issues fast and securely. Get back to work!

How to Fix Microsoft Teams Error O Offline

How to Fix Microsoft Teams Error O Offline

Stuck with Microsoft Teams "Error O" Offline? Discover proven, step-by-step fixes to get back online fast. Clear cache, restart, and more – no tech skills needed!

Where is Microsoft Teams in Outlook? Locating the Missing Icon

Where is Microsoft Teams in Outlook? Locating the Missing Icon

Frustrated by the missing Microsoft Teams icon in Outlook? Learn exactly where to find it, why it disappears, and proven steps to restore it for effortless meetings. Updated for the latest versions!