How to Check What Motherboard You Have (Windows, Mac & More)
Your motherboard is the backbone of your PC — it connects your CPU, RAM, storage, and every other component. But unless you built your machine yourself, there's a good chance you don't know exactly which board is inside. Whether you're planning an upgrade, troubleshooting a compatibility issue, or just curious, finding out is easier than most people expect.
Why You Might Need to Know Your Motherboard Model
Knowing your exact motherboard model matters more than you might think. It determines:
- Which CPUs are compatible (socket type and supported generations)
- How much and what type of RAM your system can accept
- Which BIOS/UEFI updates apply to your machine
- What expansion slots (PCIe, M.2) are available for upgrades
- Whether certain drivers or firmware are the right ones for your hardware
Getting this wrong — installing the wrong driver, flashing the wrong BIOS update — can cause real problems. So it's worth getting the exact information before you act on it.
Method 1: Check via the Command Prompt (Windows) 🖥️
This is the fastest method for most Windows users and requires no extra software.
- Press Windows + R, type
cmd, and hit Enter - In the Command Prompt window, type the following and press Enter:
wmic baseboard get product, manufacturer, version, serialnumber You'll get a readout showing:
- Manufacturer — the brand (e.g., ASUSTeK, MSI, Gigabyte, ASRock)
- Product — the specific model name/number
- Version — sometimes populated, sometimes blank depending on the board
- Serial Number — useful for warranty checks
This command queries WMI (Windows Management Instrumentation), which pulls data directly from the motherboard's firmware. It works on Windows 10 and Windows 11 without any additional tools.
Method 2: Use System Information (Windows)
If you prefer a graphical interface:
- Press Windows + R, type
msinfo32, and hit Enter - The System Information window opens
- Look for BaseBoard Manufacturer, BaseBoard Model, and BaseBoard Version in the System Summary panel
This gives you the same data as the command-line method but in a browsable format that also shows your OS version, processor, RAM, and more — all in one place.
Method 3: Check via PowerShell
PowerShell offers a slightly more modern approach:
Get-WmiObject -Class Win32_BaseBoard | Select-Object Manufacturer, Product, Version The output mirrors what you'd get from the wmic command. Some IT environments or newer Windows configurations may respond better to PowerShell queries.
Method 4: Third-Party System Info Tools
Several free utilities go deeper than built-in Windows tools:
| Tool | What It Shows |
|---|---|
| CPU-Z | Motherboard model, chipset, BIOS version |
| HWiNFO | Detailed board specs, sensor data |
| Speccy | User-friendly overview of all hardware |
| AIDA64 | Comprehensive hardware audit (paid, with trial) |
These tools are especially useful when built-in methods return incomplete data — which can happen with some OEM machines (pre-built desktops and laptops from brands like Dell, HP, or Lenovo) where the motherboard model reported in software may be an internal OEM designation rather than a publicly listed model.
Method 5: Check Physically
When software gives you ambiguous results, the board itself doesn't lie. 💡
If you're comfortable opening your desktop case:
- The model number is printed directly on the motherboard PCB, usually near the RAM slots, the edge of the board, or around the CPU socket
- Look for a string like B550 AORUS Pro or ROG STRIX Z790-E — often in large text
- The manufacturer name is typically printed prominently as well
On laptops, this approach is rarely practical and usually unnecessary — but if you're working with a bare board for repair or identification purposes, the model number is similarly stamped on the PCB surface.
Method 6: Check the BIOS/UEFI Directly
The BIOS screen itself displays your board's model and firmware version:
- Restart your computer
- Press the BIOS entry key during startup — typically Delete, F2, F10, or F12 depending on the manufacturer
- The main or info screen in the UEFI interface usually shows the motherboard model, manufacturer, and current BIOS version
This method is particularly reliable because the information comes directly from the firmware itself, bypassing any OS-level reporting inconsistencies.
What Affects How Accurate These Results Are
Not all methods return equally clean data in every situation. A few variables shape your experience:
- OEM vs. retail boards: Pre-built systems sometimes report a generic OEM board name rather than the consumer model designation. Cross-referencing the manufacturer's support page with your serial number often resolves this.
- Virtual machines: If you're running Windows in a VM, the motherboard data returned will reflect the virtual hardware, not the physical host machine.
- Older or obscure hardware: Very old boards or niche manufacturers may have incomplete WMI data, making physical inspection or BIOS verification the more reliable route.
- Laptop vs. desktop: On laptops, the "motherboard" is typically a proprietary system board unique to that model. The reported data is usually tied to the laptop model itself, not a named board you'd look up independently.
What the Model Number Actually Tells You
Once you have your motherboard model, you can look it up on the manufacturer's website to find:
- The socket type (AM4, AM5, LGA1700, etc.) — critical for CPU compatibility
- Supported RAM speeds and maximum capacity
- Available PCIe slot versions (PCIe 3.0, 4.0, or 5.0)
- M.2 slot count and type for NVMe storage
- BIOS update history — including which CPU generations were added via firmware updates
That last point matters a lot for upgrade planning. Some boards support newer CPUs only after a BIOS update, and applying the wrong update — or skipping a necessary one — can lead to instability or a non-booting system.
What you do with that model number depends entirely on what you're trying to accomplish — and whether your specific board's capabilities line up with your actual upgrade path or compatibility needs.