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.

Sign up and earn $1000 a day ⋙

Leave a Comment

Difference between regular TV and Smart TV

Difference between regular TV and Smart TV

Smart TVs have really taken the world by storm. With so many great features and the ability to connect to the Internet, technology has changed the way we watch TV.

Why doesnt the freezer have a light but the refrigerator does?

Why doesnt the freezer have a light but the refrigerator does?

Refrigerators are familiar appliances in families. Refrigerators usually have 2 compartments, the cool compartment is spacious and has a light that automatically turns on every time the user opens it, while the freezer compartment is narrow and has no light.

2 Ways to Fix Network Congestion That Slows Down Wi-Fi

2 Ways to Fix Network Congestion That Slows Down Wi-Fi

Wi-Fi networks are affected by many factors beyond routers, bandwidth, and interference, but there are some smart ways to boost your network.

How to Downgrade from iOS 17 to iOS 16 without Losing Data using Tenorshare Reiboot

How to Downgrade from iOS 17 to iOS 16 without Losing Data using Tenorshare Reiboot

If you want to go back to stable iOS 16 on your phone, here is the basic guide to uninstall iOS 17 and downgrade from iOS 17 to 16.

What happens to the body when you eat yogurt every day?

What happens to the body when you eat yogurt every day?

Yogurt is a great food. Is it good to eat yogurt every day? What will happen to your body when you eat yogurt every day? Let's find out together!

Which type of rice is best for health?

Which type of rice is best for health?

This article discusses the most nutritious types of rice and how to maximize the health benefits of whichever rice you choose.

How to wake up on time in the morning

How to wake up on time in the morning

Establishing a sleep schedule and bedtime routine, changing your alarm clock, and adjusting your diet are some of the measures that can help you sleep better and wake up on time in the morning.

Rent Please! Landlord Sim Tips for Beginners

Rent Please! Landlord Sim Tips for Beginners

Rent Please! Landlord Sim is a simulation mobile game on iOS and Android. You will play as a landlord of an apartment complex and start renting out an apartment with the goal of upgrading the interior of your apartments and getting them ready for rent.

Latest Bathroom Tower Defense Codes and How to Enter Codes

Latest Bathroom Tower Defense Codes and How to Enter Codes

Get Bathroom Tower Defense Roblox game codes and redeem them for exciting rewards. They will help you upgrade or unlock towers with higher damage.

Structure, symbols and operating principles of transformers

Structure, symbols and operating principles of transformers

Let's learn about the structure, symbols and operating principles of transformers in the most accurate way.

4 Ways AI Is Making Smart TVs Better

4 Ways AI Is Making Smart TVs Better

From better picture and sound quality to voice control and more, these AI-powered features are making smart TVs so much better!

Why ChatGPT is better than DeepSeek

Why ChatGPT is better than DeepSeek

DeepSeek initially had high hopes. As an AI chatbot marketed as a strong competitor to ChatGPT, it promised intelligent conversational capabilities and experiences.

Meet Fireflies.ai: The Free AI Secretary That Saves You Hours of Work

Meet Fireflies.ai: The Free AI Secretary That Saves You Hours of Work

It's easy to miss important details when you're jotting down other essentials, and trying to take notes while chatting can be distracting. Fireflies.ai is the solution.

How to raise Axolotl Minecraft, tame Minecraft Salamander

How to raise Axolotl Minecraft, tame Minecraft Salamander

Axolot Minecraft will be a great assistant for players when operating underwater if they know how to use them.

A Quiet Place: The Road Ahead PC Game Configuration

A Quiet Place: The Road Ahead PC Game Configuration

A Quiet Place: The Road Ahead's configuration is rated quite highly, so you will need to consider the configuration before deciding to download.