How to Find Out What Motherboard You Have
Knowing your motherboard model isn't just trivia — it determines which CPUs are compatible, how much RAM you can install, what expansion cards will fit, and whether a BIOS update is even possible. Whether you're troubleshooting a crash, planning an upgrade, or just curious about your system, identifying your mobo (motherboard) is straightforward once you know where to look.
Why Your Motherboard Model Matters
Your motherboard is the backbone of your PC. Every other component — your CPU, RAM, GPU, and storage — connects through it. The specific model dictates:
- Socket type — which processor generations are physically and electrically compatible
- RAM slots and supported speeds — DDR4 vs DDR5, and maximum capacity
- Chipset — determines features like PCIe lanes, USB ports, and overclocking support
- BIOS version — affects compatibility with newer CPUs and security features
Before buying any component, confirming your exact motherboard model prevents costly compatibility mistakes.
Method 1: Check via Windows System Information 🖥️
The fastest method on any Windows PC requires no tools or disassembly.
Steps:
- Press Windows + R to open the Run dialog
- Type
msinfo32and press Enter - In the System Information window, look for these fields under System Summary:
- BaseBoard Manufacturer — e.g., ASUS, Gigabyte, MSI, ASRock
- BaseBoard Product — your specific model number, e.g., B550M DS3H
- BaseBoard Version — sometimes lists the revision
This works on virtually every version of Windows (10 and 11). The information pulls directly from the board's firmware, so it's reliable even on prebuilt systems.
Method 2: Use Command Prompt or PowerShell
If you prefer working with text commands, both Command Prompt and PowerShell can surface this information quickly.
In Command Prompt:
wmic baseboard get manufacturer, product, version In PowerShell:
Get-WmiObject -Class Win32_BaseBoard | Select-Object Manufacturer, Product, Version Both return the same data as System Information but in a cleaner format you can copy directly into a search or support ticket.
Method 3: Use CPU-Z (Free Third-Party Tool)
CPU-Z is a widely trusted, free utility that provides detailed hardware information. After downloading and running it:
- Click the Mainboard tab
- You'll see the Manufacturer, Model, Chipset, and BIOS version clearly listed
CPU-Z is particularly useful because it also shows your RAM configuration, CPU details, and current clock speeds — all in one place. It's a common recommendation in PC building communities for good reason.
Method 4: Check Physically on the Board Itself
If your PC won't boot or you're working on a bare system, the model number is printed directly on the motherboard. Look for:
- A large label near the PCIe slots or between the RAM slots
- Text printed along the edge of the board
- A sticker near the 24-pin ATX power connector
The model name is usually in large print — something like ROG STRIX B550-F GAMING or MAG Z790 TOMAHAWK WIFI. You may need a flashlight to read it clearly if the board is installed in a case.
Method 5: Check Your Original Documentation or Purchase Records
If you built the PC yourself or bought a prebuilt, check:
- The manual that came in the box (the model is on the cover)
- Your order confirmation email from the retailer
- The manufacturer's warranty registration if you completed it
For prebuilt systems (Dell, HP, Lenovo, etc.), the motherboard is often a proprietary OEM model. In that case, the manufacturer's support site — searched by your system's serial number — will list the exact board.
What to Do With the Model Number Once You Have It
Once you've identified your motherboard, the model number unlocks a range of useful information:
| What You Need | Where to Find It |
|---|---|
| CPU compatibility list | Manufacturer's official support page |
| RAM compatibility (QVL) | Manufacturer's memory support list |
| BIOS updates | Manufacturer's downloads section |
| Manual and specs | Manufacturer's product page |
| Driver downloads | Manufacturer's support section |
Always use the official manufacturer website (ASUS, MSI, Gigabyte, ASRock, etc.) for BIOS updates — never third-party sources. A failed BIOS update from an unreliable source can brick a board.
The Variables That Change the Picture 🔍
The method that works best depends on a few factors unique to your situation:
Operating system: All the software methods above are Windows-specific. On Linux, the command sudo dmidecode -t 2 pulls baseboard information from the firmware. macOS doesn't use user-replaceable motherboards in the traditional sense — Apple Silicon Macs integrate the board and chip.
Prebuilt vs custom build: Prebuilt systems sometimes report a generic OEM name rather than the board's retail name. In those cases, the physical inspection or manufacturer support portal gives more specific results.
Older systems: Very old boards occasionally don't report their model correctly through software — the firmware string may be blank or generic. Physical inspection becomes the fallback.
Virtualized environments: If you're checking inside a virtual machine, the reported board information belongs to the virtualization software, not actual hardware.
The right combination of methods — and what you do with the information afterward — depends entirely on your system's configuration, what you're trying to accomplish, and how comfortable you are with the different approaches.