Using Computer Hardware IDs (CHIDs)
Computer Hardware IDs (CHIDs) are defined in the Specifying Hardware IDs for a Computer.
Windows 10 adds several new CHIDs that incorporate Baseboard Manufacturer and Baseboard Product information. These new CHIDs are included in the CHID hierarchy. The following table shows the hierarchy in descending order of specificity. CHIDs that are new to Windows 10 are highlighted in bold.
HWID | Contents |
---|---|
HardwareID-0 | Manufacturer + Family + Product Name + SKU Number + BIOS Vendor + BIOS Version + BIOS Major Release + BIOS Minor Release |
HardwareID-1 | Manufacturer + Family + Product Name + BIOS Vendor + BIOS Version + BIOS Major Release + BIOS Minor Release |
HardwareID-2 | Manufacturer + Product Name + BIOS Vendor + BIOS Version + BIOS Major Release + BIOS Minor Release |
HardwareID-3 | Manufacturer + Family + ProductName + SKU Number + Baseboard_Manufacturer + Baseboard_Product |
HardwareID-4 | Manufacturer + Family + ProductName + SKU Number |
HardwareID-5 | Manufacturer + Family + ProductName |
HardwareID-6 | Manufacturer + SKU Number + Baseboard_Manufacturer + Baseboard_Product |
HardwareID-7 | Manufacturer + SKU Number |
HardwareID-8 | Manufacturer + ProductName + Baseboard_Manufacturer + Baseboard_Product |
HardwareID-9 | Manufacturer + ProductName |
HardwareID-10 | Manufacturer + Family + Baseboard_Manufacturer + Baseboard_Product |
HardwareID-11 | Manufacturer + Family |
HardwareID-12 | Manufacturer + Enclosure Type |
HardwareID-13 | Manufacturer + Baseboard_Manufacturer + Baseboard_Product |
HardwareID-14 | Manufacturer |
OEMs must provide the correct CHID information to the driver publisher. The ComputerHardwareIds tool, included in the Windows Desktop Tools SDK, can help with reporting CHIDs from a known set of System Management BIOS (SMBIOS) values. ComputerHardwareIds performs two different tasks.
Default behavior: The tool reports the system's SMBIOS values and generated CHIDs.
By default, the tool displays the system's SMBIOS values, and the CHIDs that are generated from the SMBIOS values.
Simulation behavior: The tool generates CHIDs from user provided SMBIOS values.
You can run the tool with simulated SMBIOS values (such as manufacturer, family, and SKU) to get a list of generated CHIDs. The tool allows you to determine which CHIDs would be generated on a system with specific SMBIOS data values.
Tips for consistent CHIDs
CHIDs are generated based on case sensitive SMBIOS values. Care must be taken to ensure that systems don't mix cases in SMBIOS text values. Similarly, UNICODE characters aren't specially treated. Upper and lower case versions of special characters, such as the Turkish dotted and undotted letter I, are treated uniquely: I, ı, İ and i aren't the same.
The ComputerHardwareIds tool only computes CHIDs that have the necessary SMBIOS values available. If an SMBIOS data field is missing (or it's null), then any related CHIDs aren't generated. For example, if the SMBIOS SKU field is null, then CHIDs 0, 3, 4 6 and 7 aren't available for that particular system.
For more information about CHIDs, see Specifying Hardware IDs for a Computer.
How the Windows Update Service uses CHID
The Windows Update service uses CHID to "reduce the number of systems that a driver is applicable to". This reduction is the first thing that happens before PnP ranking is done.
The Windows Update service treats CHID differently depending on which Windows OS level is installed.
Windows 10 version | Windows Update behavior |
---|---|
1507 through 1703 | Windows Update ranks each CHID from CHID-0 to CHID-14 where CHID-0 outranks CHID-14 |
1709 and later | CHID level is no longer ranked. All applicable CHID targeted drivers from CHID-0 through CHID-14 are grouped together then PnP ranking occurs on the entire group. |
Consider the following example:
Contoso has the following two drivers published as Automatic that target the same hardware (HWID) but with different CHID.
- Distribution 1 - targeting CHID-4 (Manufacturer + Family + Product Name + SKU Number)
- Distribution 2 - targeting CHID-5 (Manufacturer + Family + Product Name)
Which one is by the Windows Update Service for systems that match CHID-5?
Contoso System | Windows OS level | Offered Driver |
---|---|---|
CHID-5 match but not a CHID-4 match | Windows 10 1703 or earlier | Distribution 2 |
CHID-5 match but not a CHID-4 match | Windows 10 1709 or later | Distribution 2 |
CHID-5 match and a CHID-4 match | Windows 10 1703 or earlier | Distribution 1 |
CHID-5 match and a CHID-4 match | Windows 10 1709 or later | Both are offered. PnP ranking would then select the best match of these two CHIDs for installation. |