Skip to content
Follow
Windows 🟡 Intermediate

How to Find Hardware ID (HWID) in Windows 11

Richard
Written by
Richard
Jul 24, 2026 Updated Sep 16, 2026 5 min read
How to find Hardware ID (HWID) of Devices in Windows 11
How to find Hardware ID (HWID) of Devices in Windows 11

A Hardware ID (HWID) is a unique string of letters and numbers that acts like a digital fingerprint for physical parts inside your PC, such as a graphics card or Wi-Fi adapter. Windows 11 uses this specific code to recognize each piece of hardware and load the correct driver software.

Advertisement

Finding an HWID helps you track down missing drivers when a device stops working properly. For instance, a common component like the Intel Wi-Fi 6 AX201 relies on an HWID string that starts with PCI\VEN_8086&DEV_A370.

⚡ Quick Answer

Open Device Manager, find your device, right-click to open Properties, select the Details tab, and choose “Hardware Ids” from the dropdown menu. The ID will appear in the box below.

Advertisement

Method 1Finding the Hardware ID Using Device Manager

Device Manager serves as the central hub for your computer’s hardware. It lists every connected component—from keyboards to graphics cards—making it the most common place to find an HWID.

Step 1Open Device Manager

To open Device Manager quickly, press the Win+R on your keyboard. This action launches a small dialogue box. Type devmgmt.msc into the box and press Enter or click OK.

Windows 11 Device Manager window showing hardware and drivers.
Windows 11 Device Manager window showing hardware and drivers.

Step 2Find the Device

Device Manager groups your computer parts into categories to help you locate specific hardware in Windows 11. Open Device Manager, look through categories like Display adapters or Network adapters, and click the small arrow next to a category to see the individual devices listed inside.

Click the small arrow next to a device category to reveal the devices listed within that category. Expanding "Display adapters," for example, might show your NVIDIA or AMD graphics card.

Advertisement

Step 3Open the Device's Properties

Locate the specific device for which you need the Hardware ID. Double-click that device. The device's Properties window will appear, displaying all details about the hardware. Within the Properties window, find and click the "Details" tab.

Device Manager window showing device properties in Windows 11.
Device Manager window showing device properties in Windows 11.

Step 4Go to the Details Tab

In the Properties window, locate and click the "Details" tab.

Step 5Select "Hardware Ids"

You will see a field labeled "Property" with a dropdown menu. Click this menu. Scroll down and choose "Hardware Ids."

Device Manager showing hardware ID details for a device.
Device Manager showing hardware ID details for a device.

Step 6Copy the Hardware ID

Copying your windows 11 hardware id lets you save the unique text string for driver searches or troubleshooting. Right-click the specific Hardware ID in the properties list, select Copy from the menu, and paste the code into Notepad or another text editor.

Advertisement

To copy a Hardware ID, right-click the Hardware ID text and select "Copy." You can then paste this Hardware ID using Ctrl+V into a document, email, or any other location where the Hardware ID is required.

Copying the hardware ID from Device Manager in Windows 11.
Copying the hardware ID from Device Manager in Windows 11.

Method 2Finding the Hardware ID Using PowerShell

If you are comfortable with command-line interfaces, PowerShell can efficiently retrieve the Hardware IDs for all your devices simultaneously. This approach is particularly useful if you require information for multiple components.

Step 1Open PowerShell

Opening PowerShell as an administrator gives you the permissions needed to view all system hardware details without errors in Windows 11. Right-click the Start button on your taskbar and choose Windows Terminal (Admin) or Windows PowerShell (Admin) from the menu.

📝Good to KnowRunning Windows 11 as an Administrator helps ensure you can access all system information, including hardware details.

This level of access prevents potential permission errors when you try to view device properties.

Advertisement

Step 2Choose Your Command

Running a specific command in PowerShell displays every connected device and its windows 11 hardware id directly on your screen. Type Get-PnpDevice -PresentOnly | Select-Object Name, HardwareID | Format-Table -AutoSize into the PowerShell window and press Enter to generate the complete list.

Option A: Display All Hardware IDs in PowerShell

You can view all Hardware IDs within the PowerShell window by entering the following command and pressing Enter: `Get-PnpDevice -PresentOnly | Select-Object -Property Name, HardwareID`. This command lists each hardware device and its unique Hardware ID, which can be useful for troubleshooting or driver installation.

Get-PnpDevice -PresentOnly | Select-Object Name, HardwareID | Format-Table -AutoSize

This command instructs Windows to list all connected devices (-PresentOnly), display their name and Hardware ID (Select-Object -Property Name,HardwareID), and then format the output neatly (Format-List).

Option B: Save All Hardware IDs to a Text File

To save the list to a text file on your Desktop for later use, enter this command and press Enter:

Advertisement
Get-PnpDevice -PresentOnly | Select-Object Name, HardwareID | Format-Table -AutoSize > "$env:USERPROFILE\Desktop\HardwareID.txt"

This command performs the same function, but the > "$env:USERPROFILE\Desktop\HardwareID.txt" portion redirects the results to a file named "HardwareID.txt" located on your Desktop.

Step 3Find the Hardware ID in the Output

Scanning the PowerShell output list helps you match your specific device to its correct windows 11 hardware id. Read down the name column to find your hardware, then look at the matching code on the same line to copy the identifier you need.

💡TipIf you saved the list, open "HardwareID.txt" from your Desktop using Notepad or another text editor to view and search its contents.

If you saved the list, open "HardwareID.txt" from your Desktop using Notepad or another text editor to view and search its contents.

Understanding What Those IDs Mean

Decoding a windows 11 hardware id reveals specific details about who made your computer part and how it connects to your system. The prefix shows the connection type like PCI or USB, while VEN and DEV codes identify the exact manufacturer and model.

Advertisement
  • PCI or USB: Shows the type of connection the device uses.
  • VEN_XXXX: The Vendor ID. This is a unique code for the company that made the hardware (like NVIDIA or Intel).
  • DEV_XXXX: The Device ID. This identifies the specific model of hardware from that maker.
  • SUBSYS_xxxx: The Subsystem ID. This often identifies the main device or system board it's on.
  • REV_xx: The Revision number. This shows a specific version or update of the hardware.

Device VEN and DEV codes provide valuable information. You can use these codes on websites like PCI Lookup to find the specific device and its maker. This method is a good first step to locate the right drivers for your hardware.

References:

Summary

Finding a windows 11 hardware id is a quick process you can do using either Device Manager or PowerShell. Device Manager lets you check individual device properties under the Details tab, while PowerShell allows you to view all hardware identifiers at once using a simple command.

Advertisement

```

What is my HWID?

Method 1: Using the Device Manager Right-click the device and select Properties. Go to the Details tab. In the Property dropdown menu, select Hardware Ids. The value displayed is the HWID for that specific component.

Was this guide helpful?

📬 Get new Windows tips in your inbox
One email when we publish something worth your time. No spam, unsubscribe anytime.
Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

3161 articles → Twitter
Advertisement

📚 Related Tutorials

5 Ways to Customize Windows Terminal on Windows 11
Windows 5 Ways to Customize Windows Terminal on Windows 11
Why Does Task Manager Show 100 Percent Disk Usage
Windows Why Does Task Manager Show 100 Percent Disk Usage
How To Remove Duplicate Bluetooth Devices From Windows 11 Device List
Windows How To Remove Duplicate Bluetooth Devices From Windows 11 Device List
How to Check Graphics Card Details on Windows 11
Windows How to Check Graphics Card Details on Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *