How to Find Your Motherboard Model (Every Method Explained)
Knowing your motherboard model unlocks a surprisingly long list of practical tasks — checking RAM compatibility before upgrading, downloading the right chipset drivers, verifying BIOS version support, or simply understanding what your PC is actually built around. The good news: you don't need to open your case or dig through old receipts. Several reliable methods exist, and the right one depends on your operating system, your comfort with command-line tools, and whether your system is even bootable.
Why Your Motherboard Model Matters
Your motherboard is the backbone of your PC. Every other component — CPU, RAM, GPU, storage — connects to it and operates within the limits it sets. The model number tells you:
- Which CPU socket is supported (e.g., AM5, LGA1700)
- Maximum RAM capacity and speed the board can handle
- Which BIOS/UEFI version you're running
- Expansion slot availability (PCIe generations, M.2 slots)
- Manufacturer support pages for drivers and firmware updates
Without this information, hardware upgrades become guesswork.
Method 1: Check via Windows Command Prompt or PowerShell 💻
This is the fastest method for most Windows users and requires no additional software.
Using Command Prompt:
- Press Windows + R, type
cmd, and hit Enter - Type the following and press Enter:
wmic baseboard get product, manufacturer, version, serialnumber This returns the manufacturer, product name (model number), version, and serial number directly from your system firmware. It works on Windows 10 and Windows 11.
Using PowerShell:
Get-WmiObject win32_baseboard | Select-Object Manufacturer, Product, Version Both commands pull data from WMI (Windows Management Instrumentation), which reads hardware identifiers stored in the board's firmware — no physical inspection required.
Method 2: Use System Information (msinfo32)
For users who prefer a graphical interface:
- Press Windows + R, type
msinfo32, press Enter - In the System Summary panel, look for BaseBoard Manufacturer, BaseBoard Product, and BaseBoard Version
This displays the same firmware data as the command-line method but in a readable format. It also shows your BIOS version and date, which is useful when checking whether a firmware update is available from your manufacturer.
Method 3: Check via CPU-Z or Speccy (Third-Party Tools)
Free utilities like CPU-Z and Speccy present hardware details in a structured, easy-to-read layout.
- CPU-Z: Navigate to the Mainboard tab. You'll see manufacturer, model, chipset, BIOS version, and slot information.
- Speccy: Shows motherboard details under the Motherboard section alongside temperatures and other system data.
These tools are especially useful when you want a broader picture of your hardware — not just the board model, but how it's currently configured.
Method 4: Check the Physical Board 🔍
If your system won't boot, or if you simply want to verify the firmware-reported model matches the physical hardware:
- Power down and unplug the PC
- Open the case (side panel on most towers)
- Look for the model number printed directly on the PCB — typically between the PCIe slots or near the RAM slots
Common label formats vary by manufacturer:
| Manufacturer | Label Style Example |
|---|---|
| ASUS | ROG STRIX B550-F GAMING |
| MSI | MAG B660 TOMAHAWK WIFI |
| Gigabyte | B550 AORUS PRO AX |
| ASRock | X570 Taichi |
The text is usually large and clearly printed. You may need a flashlight to read it depending on case clearance.
Method 5: Check via BIOS/UEFI
If Windows isn't loading or you're troubleshooting at the firmware level:
- Restart your PC and press the BIOS entry key during startup — typically Del, F2, or F10 depending on the manufacturer
- The motherboard model and BIOS version are usually displayed on the main/home screen of the UEFI interface
This method is independent of the operating system entirely, making it useful in recovery or pre-installation scenarios.
Method 6: Linux Users
On Linux, the equivalent command reads directly from the DMI (Desktop Management Interface):
sudo dmidecode -t baseboard Look for Product Name in the output. The dmidecode tool is available in most distributions and provides detailed hardware information sourced from firmware, similar to WMI on Windows.
When the Results Look Unclear
Occasionally the wmic or msinfo32 output returns generic strings like "To Be Filled by O.E.M." — this typically happens with:
- OEM systems (pre-built PCs from Dell, HP, Lenovo, etc.) where the manufacturer populates system-level identifiers differently
- Very old hardware with incomplete DMI tables
- Certain server-grade boards
In these cases, the physical inspection method or the BIOS screen is more reliable. On pre-built systems, the overall system model (found via wmic csproduct get name) often provides more useful information than the raw board identifier.
What the Model Number Tells You — and What It Doesn't
Knowing the model is the starting point, not the finish line. Two systems running identical motherboards can behave quite differently depending on:
- BIOS version installed — an older firmware may lack support for newer CPUs or memory speeds that the board technically supports in later revisions
- Installed RAM configuration — the board's maximum spec and what's actually installed are separate questions
- Regional variants — some boards ship with different Wi-Fi or audio configurations depending on market
The model number points you to the right support page, compatibility list, and driver repository. What you do with that information — whether you're planning a CPU upgrade, troubleshooting instability, or checking RAM XMP support — depends entirely on what your system is currently running and what you're trying to achieve.