CodecPathTechnology explained. Official sources linked.

Guide

How Do I Check What Motherboard I Have?

Use Windows System Information first, then verify the exact model in PowerShell or UEFI before buying parts or installing a BIOS update.

CodecPath editors6 min read
System InformationFastest readable modelcheckPowerShellCopyable model andserial dataUEFI setupWorks when Windowscannot bootPCB labelExact revision, casemust open
Four independent motherboard checks, from the quickest Windows lookup to the most conclusive fallback.

How to check what motherboard I have with System Information

Windows System Information is the winner for most PCs. Press Windows key + R, run msinfo32, then read BaseBoard Manufacturer, BaseBoard Product, and BaseBoard Version under System Summary.

That is usually enough. A retail board might appear as ASUS TUF GAMING B650-PLUS, which is a useful product name rather than an opaque serial number or the model of the entire computer.

Do not confuse System Manufacturer and System Model with the BaseBoard fields. On a prebuilt PC, the first pair identifies the complete Dell, HP, or Lenovo machine; the second pair is supposed to identify the mainboard inside it, although the distinction gets muddy when an OEM uses a proprietary board with no retail equivalent.

The system information tool is reading SMBIOS data supplied by the firmware. Windows exposes the same source through the Win32_BaseBoard manufacturer, product, version, and serial properties, so it cannot repair a careless entry made by the board manufacturer.

Bad data looks obvious. Common results include Default string, To be filled by O.E.M., Base Board Product Name, or an internal product code that makes sense only in the PC maker's parts database. BaseBoard Version may also be blank.

None of that means the board is broken. It means the firmware table is incomplete.

For a quick RAM, storage, or accessories check, System Information often settles the question. For a BIOS update, do not trust it unless the manufacturer and model are clearly displayed and match the support page exactly, including every suffix, because one stray letter can point to a different firmware image.

How to check what motherboard I have on my PC with PowerShell

PowerShell is the better choice when you need copyable motherboard data, a serial number, or results from a remote Windows PC. Run the command below, then compare Manufacturer, Product, Version, and SerialNumber instead of trusting one field.

PowerShell
Get-CimInstance -ClassName Win32_BaseBoard | Format-List Manufacturer,Product,Version,SerialNumber

The output is structured. That matters for inventory scripts, business solutions, and remote maintenance software because Get-CimInstance returns an object rather than forcing a script to scrape columns from Command Prompt text; Microsoft documents its CIM query and session parameters.

For one local machine, an administrator prompt is not normally required. Type PowerShell into Start, open it, paste the command, and check whether the board product and manufacturer version fields contain real values.

PowerShell is not a second source of truth. Both it and System Information read firmware-backed management data, which means the same placeholder can appear in both places and the manufacturer product serial output can still be wrong.

Its advantage is practical: clean formatting, automation, and remote access. Accuracy does not improve merely because the result arrived in a blue terminal window.

Older instructions often recommend this Command Prompt line:

Command Prompt
wmic baseboard get product,manufacturer,version,serialnumber

Skip it on a new setup. Microsoft has deprecated the WMIC command-line utility in favor of PowerShell, and newer Windows installations may return an unrecognized-command error even though the underlying Win32_BaseBoard class still works perfectly well through CIM.

Use Get-CimInstance instead. No replacement download is needed.

What works when Windows will not start?

UEFI setup is the best check when Windows will not boot but the computer can still reach firmware. Power on the PC, press its setup key, commonly F2 or Delete, and look under Main, Board Information, or System Information.

Timing is the nuisance. Press the key several times immediately after power-on, before the Windows loading indicator appears, since Fast Boot can make the correct key seem useless by cutting the input window to little more than a blink.

The exact key and menu name depend on the PC or motherboard manufacturer. Some firmware screens put the board product on the first page; others bury it beside the installed BIOS version, CPU, memory, and storage components.

That pairing helps. Before a firmware update, you may need both an exact board model and a current BIOS version because the support page can require an intermediate release before the newest file will install.

UEFI still loses for routine checks. Menu layouts vary, text is awkward to copy, and prebuilt systems may report only the complete computer model rather than the motherboard fitted inside it.

There is a clear exception. Pick UEFI over Windows when the operating system is unavailable, the boot drive has been removed, or background processes and startup failures prevent sign-in.

Write down every suffix. A partial model match is not permission to flash firmware, even if the built-in updater is expected to reject an incompatible image, because that safeguard is no substitute for identifying the board correctly before a potentially destructive update.

When is the physical motherboard label necessary?

Open the case only when Windows and UEFI show placeholders, omit a required revision, or cannot run. The text printed on the PCB is the strongest fallback when a BIOS download or compatibility list is divided by hardware revision.

Try the case label first. A prebuilt PC's service tag, serial number, or machine type may open an original parts list on the manufacturer's support site, sparing you from dismantling a cramped desktop merely to discover an internal assembly number.

An invoice can help too. Be exact about what it names: an invoice listing an HP Pavilion identifies the whole PC, while a custom-build invoice listing an MSI MAG B650 TOMAHAWK WIFI identifies the motherboard itself.

If inspection is unavoidable, shut down, disconnect wall power, and press the power button once. Remove the side panel only after the machine is electrically isolated.

Look between the PCIe slots, beside the RAM sockets, around the CPU socket, and along the board edges. Modern motherboards often carry the model in large silkscreened letters, but the board version or revision can be much smaller and may sit nowhere near the main name.

That tiny number matters. Some vendors publish separate BIOS files for different PCB revisions, while others group several revisions beneath one support page, so a matching model name does not settle the matter when the download instructions explicitly demand a revision.

Laptop logic boards are trickier. A visible code may identify a bare PCB family, manufacturing run, or spare part instead of the laptop's marketed model, and in that case the machine's full product number plus its service manual gives a safer route to CPU, RAM, battery, and display compatibility.

The decision rule is simple. System Information wins for speed. PowerShell wins for records and remote checks, while UEFI wins if Windows is dead; the physical label wins only when firmware data is vague or the support package demands an exact revision.

Slower, yes. Decisive, too.

FAQ

How to check motherboard model Windows 11, and how to check motherboard model Windows 10?
Use the same built-in method on both systems: press Windows key + R, enter msinfo32, and read BaseBoard Manufacturer, BaseBoard Product, and BaseBoard Version. If those entries are generic or blank, run Get-CimInstance -ClassName Win32_BaseBoard in PowerShell, then verify the result against UEFI or the PC maker's serial-number record.
Can CPU-Z identify a motherboard more accurately than Windows?
CPU-Z can present motherboard and chipset details more neatly, but it cannot correct inaccurate SMBIOS identification. Its Mainboard tab is convenient for seeing the model and BIOS version together; a precise UEFI entry or printed PCB revision remains stronger evidence when the fields disagree.
Is the motherboard model enough to choose a CPU or RAM kit?
No, the model is only the starting point for compatibility. Check the manufacturer's CPU support list, required BIOS release, socket, memory generation, DIMM limits, and qualified memory list before buying upgrades, especially when AMD processors span several board generations.