How to Find the Model of Your Motherboard
Knowing your motherboard model unlocks a surprising amount of useful information — from compatible RAM upgrades to supported CPU generations, BIOS update availability, and which expansion slots you're working with. The good news is that finding this information rarely requires opening your PC case. Several reliable methods exist, and which one works best depends on your operating system, your access level, and how the system was originally built.
Why Your Motherboard Model Matters
The motherboard is the central hub of your PC. Every other component — CPU, RAM, GPU, storage — connects to it and must be compatible with it. When you're planning an upgrade, troubleshooting a driver issue, or downloading a chipset update, the exact model number is the starting point. A vague brand name won't cut it; manufacturers like ASUS, MSI, Gigabyte, and ASRock each produce dozens of boards with meaningfully different specs.
Method 1: Check Via Windows System Information 🖥️
The fastest software-based method on Windows requires no third-party tools.
- Press Windows + R to open the Run dialog
- Type
msinfo32and press Enter - In the System Summary panel, look for BaseBoard Manufacturer, BaseBoard Product, and BaseBoard Version
The "BaseBoard Product" field is your motherboard model number. This method works on Windows 10 and Windows 11 without any additional installs.
Limitation: On some OEM machines (pre-built desktops from Dell, HP, Lenovo, etc.), this field may display the chassis or system model rather than the actual motherboard part number. If that happens, cross-reference with the manufacturer's support site using your serial number.
Method 2: Use the Command Prompt or PowerShell
If you prefer working in a terminal, two quick commands will surface motherboard details:
Command Prompt:
wmic baseboard get product,manufacturer,version,serialnumber PowerShell:
Get-WmiObject Win32_BaseBoard | Select-Object Manufacturer, Product, Version Both pull data directly from the system's WMI (Windows Management Instrumentation) layer, which reads hardware information embedded in the board's firmware. This is generally reliable on custom-built systems.
Method 3: Check the Physical Board
If software methods return incomplete or conflicting results, the definitive answer is printed directly on the motherboard itself.
- Power down, unplug, and open your PC case
- Look near the PCIe slots, along the board edge, or between RAM slots
- The model number is usually printed in large white or yellow text — something like B550M DS3H or ROG STRIX Z790-E
This method is the ground truth. Whatever is physically silkscreened on the board is the actual model, regardless of what any software reports.
Method 4: Third-Party System Information Tools
Several free utilities go further than built-in Windows tools, often providing more detail about chipset, revision number, and supported features:
| Tool | What It Shows | Best For |
|---|---|---|
| CPU-Z | Board model, chipset, BIOS version | Quick hardware audits |
| HWiNFO64 | Detailed board specs and sensor data | Advanced diagnostics |
| Speccy | Readable summary of all hardware | General users |
These tools read from the same underlying hardware data sources, but they often parse and display it more clearly than the built-in Windows utilities — especially revision numbers, which matter when checking BIOS compatibility.
Method 5: Check the BIOS/UEFI Directly
Every modern motherboard displays its model in the BIOS/UEFI interface. To access it:
- Restart your PC
- Press the appropriate key during startup — typically Delete, F2, or F10 depending on the manufacturer
- Look at the main or home screen of the BIOS interface
This method is particularly useful if Windows won't boot or if you're troubleshooting a system that isn't fully operational. The BIOS screen almost always shows the board model and current firmware version prominently.
What If You Have a Pre-Built or Laptop?
Pre-built desktops and laptops complicate this slightly. Manufacturers like Dell, HP, and Lenovo often use custom or OEM variants of standard boards — the physical board may carry a generic part number rather than a consumer-market model name. 🔍
In these cases:
- Use your system serial number (found via
wmic bios get serialnumberin Command Prompt) and look it up on the manufacturer's support site - The support page will list the exact board variant, compatible upgrades, and available drivers
The board's specifications may be locked to the chassis and may not accept third-party upgrade components the way a retail board would — something worth knowing before purchasing RAM or a CPU upgrade.
The Variables That Affect What You Find
Different users land in different situations when checking their motherboard model:
- Custom-built PCs — software tools and physical inspection both work reliably
- OEM pre-builds — BIOS and manufacturer support sites are more trustworthy than WMI data
- Older systems — BIOS may not display the model; physical inspection becomes necessary
- Systems with modified BIOS — reported model strings can sometimes be altered, making physical inspection the only reliable method
- Non-booting systems — limits you to physical inspection or BIOS entry
Each of these scenarios leads to a different path. The method that works cleanly on a custom-built gaming rig may return incomplete data on a five-year-old office desktop — and what you plan to do with that model number (upgrade RAM, flash a BIOS update, check CPU compatibility) shapes which level of detail you actually need.