How to Find Out What Motherboard You Have

Knowing your motherboard model isn't just trivia — it determines what RAM you can install, which CPUs are compatible, whether you can add a new GPU, and what BIOS updates are available. The good news: Windows, macOS, and Linux all give you ways to pull this information without opening your case.

Why Your Motherboard Model Matters

Your motherboard is the backbone of your PC. Every other component — processor, memory, storage, graphics card — connects through it. Before upgrading any part, or troubleshooting a hardware issue, you need to know exactly which board you're working with.

The model number tells you:

  • Socket type — which CPU generations are compatible
  • Chipset — which features and expansion slots are supported
  • Memory slots and supported RAM speeds
  • Available BIOS/UEFI firmware versions

How to Check Your Motherboard on Windows 🖥️

Windows gives you several built-in methods, no third-party software required.

Method 1: System Information Tool

  1. Press Windows + R, type msinfo32, and hit Enter
  2. In the System Summary panel, look for:
    • BaseBoard Manufacturer — the brand (e.g., ASUS, MSI, Gigabyte, ASRock)
    • BaseBoard Product — the model number
    • BaseBoard Version — the revision, if applicable

This is the fastest method for most users and works on Windows 10 and 11.

Method 2: Command Prompt (WMIC)

Open Command Prompt and type:

wmic baseboard get product,manufacturer,version,serialnumber 

This returns the same information in a single line — useful if you want to copy the output quickly.

Method 3: PowerShell

For users more comfortable with PowerShell:

Get-WmiObject win32_baseboard | Select-Object Manufacturer, Product, Version 

Both the WMIC and PowerShell methods work well on Windows 10 and Windows 11. Note that WMIC is deprecated in newer Windows versions, so PowerShell is the more future-proof option.

Method 4: CPU-Z (Third-Party)

CPU-Z is a free, widely trusted utility. Under the Mainboard tab, it displays the manufacturer, model, chipset, and BIOS version in detail. It's particularly useful if the built-in tools return incomplete information — which occasionally happens with OEM (pre-built) systems from manufacturers like Dell, HP, or Lenovo.

Checking Motherboard Info on Linux 🐧

Linux users can query hardware information directly from the terminal.

Run either of these commands:

sudo dmidecode -t baseboard 

or:

cat /sys/class/dmi/id/board_name cat /sys/class/dmi/id/board_vendor 

The dmidecode command returns detailed output including manufacturer, product name, version, and serial number. The /sys/class/dmi/ path gives quicker, line-by-line results.

What About Macs?

Apple Macs don't expose motherboard model information in the same way — and for most Mac users, it isn't relevant. Apple integrates the logic board tightly with the system identifier. To find your Mac's hardware details:

  1. Click the Apple menuAbout This Mac
  2. Note the Mac model and year
  3. For deeper specs, click System Report under the Hardware Overview section

For compatibility and upgrade decisions on a Mac, the system model identifier (e.g., MacBookPro18,1) is more useful than a board model number.

Physical Inspection: Reading the Board Directly

If software tools return blank or generic results — which can happen on some pre-built systems or when the OS won't boot — you can read the model number directly from the board itself.

Where to look:

  • Between the PCIe slots (common on ATX boards)
  • Near the CPU socket
  • Along the edge of the board

The printing is usually white or yellow silkscreen text. You're looking for a string like B550M AORUS PRO, ROG STRIX Z690-F, or MAG B660M MORTAR. Once you have that string, searching it directly on the manufacturer's website returns the full spec sheet.

What the Results Tell You — and Where It Gets Complicated

Information FoundWhat It Unlocks
Manufacturer + ModelFull spec sheet, driver downloads
ChipsetCPU compatibility, PCIe generation support
BIOS VersionWhether firmware updates are available
Socket TypeWhich CPU upgrades are physically possible

The straightforward part: finding your board model is almost always quick and free. The more nuanced part is interpreting what that model means for your specific situation.

Two users could have the same motherboard and reach completely different conclusions about what to do next. Someone running an older CPU on a board with a newer chipset may have significant upgrade headroom. Someone on a last-generation socket may find their upgrade path ends at the current processor lineup. A user building a media PC has different priorities than someone maxing out a workstation.

BIOS version matters too. Some motherboards shipped without support for later CPU generations and required a firmware update — which itself sometimes requires an older compatible CPU to perform. Knowing your board model is the starting point, but the upgrade or compatibility decision that follows depends on what you're trying to do, what's already in your system, and how much complexity you're willing to take on.

The model number is the key. What it opens depends entirely on what door you're standing in front of.