How to Find Out Your Motherboard Model (Every Method That Works)

Your motherboard is the backbone of your PC — it determines what CPU you can use, how much RAM you can install, and which components are compatible with your system. Knowing your exact motherboard model becomes essential when you're upgrading hardware, updating drivers, troubleshooting a problem, or checking BIOS version compatibility. The good news: you don't need to open your case to find it.

Why Your Motherboard Model Matters

Every motherboard has a manufacturer name (like ASUS, MSI, Gigabyte, or ASRock) and a model number (like B550M DS3H or ROG STRIX Z790-E). Together, these two pieces of information tell you:

  • Which CPUs and RAM are supported
  • Which BIOS updates apply to your board
  • What expansion slots and ports you have
  • Whether a specific component will be compatible

Without the exact model, you're guessing — and guessing wrong with hardware can be expensive.

Method 1: Check It in Windows (No Tools Required) 🖥️

The fastest method for most users. Windows stores motherboard information in its system database and you can pull it up in seconds.

Using System Information:

  1. Press Windows + R to open the Run dialog
  2. Type msinfo32 and hit Enter
  3. In the System Information window, look for:
    • BaseBoard Manufacturer — the brand (e.g., ASUSTeK Computer Inc.)
    • BaseBoard Product — the model number (e.g., PRIME B550-PLUS)
    • BaseBoard Version — the hardware revision

This works on Windows 10 and Windows 11 without installing anything.

Using Command Prompt:

If you prefer a quicker route, open Command Prompt (search "cmd" in the Start menu) and type:

wmic baseboard get product,manufacturer,version 

Hit Enter. You'll get a clean, three-column output with everything you need in under five seconds.

Using PowerShell:

PowerShell users can run:

Get-WmiObject -Class Win32_BaseBoard | Select-Object Manufacturer, Product, Version 

All three Windows methods pull from the same underlying system data, so the output will match.

Method 2: Check It in the BIOS/UEFI

When your PC boots, pressing a key (usually Delete, F2, or F10 depending on the manufacturer) takes you into the BIOS or UEFI interface. The main screen or System Information section of virtually every modern BIOS displays:

  • Motherboard model
  • BIOS version and date
  • CPU information
  • Installed memory

This method is especially reliable because the BIOS reads directly from the board's firmware — there's no operating system layer in between that could misreport anything. It's also useful if your Windows installation is corrupted or you haven't installed an OS yet.

Method 3: Use a Third-Party System Info Tool

Several free utilities report hardware information in more detail than Windows' built-in tools. Commonly used options include CPU-Z and HWiNFO64, both of which display motherboard manufacturer and model on their main summary screens.

These tools are particularly useful when you want more than just the model — they'll also show:

  • Chipset (e.g., Intel Z790 or AMD B550)
  • BIOS version and release date
  • Slot and port configuration
  • Memory channel configuration

If you're doing any serious hardware research or compatibility checking, this extra layer of detail is often worth it.

Method 4: Read It Physically Off the Board

If you're already inside your case — or comfortable opening it — the motherboard model is printed directly on the PCB (printed circuit board) itself. It's typically located:

  • Between the CPU socket and RAM slots (most common location)
  • Near the bottom edge of the board
  • Beside the chipset heatsink

The text is usually white or yellow silkscreen printing, and it will show both the manufacturer name and full model number. On some boards, only the model number is printed and the manufacturer is identified by a logo.

This method is the ground truth — no software, no drivers, no possible misreporting.

Method 5: Check If You Have the Original Box or Receipt

If you built the PC yourself or kept your documentation, the box and any included paperwork will have the full model number printed on the outside. Retailers also often include this in your order confirmation email, which can be searched if you bought the board online.

Comparing the Methods at a Glance

MethodRequires Opening Case?Works Without OS?Speed
Windows (msinfo32 / CMD)NoNoVery fast
BIOS/UEFINoYesFast
Third-party tool (CPU-Z)NoNoFast
Physical inspectionYesYesModerate
Box / receiptNoYesDepends

A Note on Laptops and Pre-Built PCs 💡

If you're using a laptop or a pre-built desktop (from Dell, HP, Lenovo, etc.), the experience is slightly different. The motherboard model number may be less useful than the system model number — for example, "Dell Inspiron 15 3520" — because manufacturer-specific boards in pre-builts aren't sold separately and BIOS updates are tied to the system model, not the bare board model.

On these machines, msinfo32 still works, but look at the System Model field alongside the BaseBoard fields for the most actionable information when contacting support or downloading drivers.

What the Output Actually Looks Like

A typical result from the Windows CMD method might read:

Manufacturer Product Version ASUSTeK PRIME B550-PLUS Rev X.0x 

That "PRIME B550-PLUS" is what you'd search on the manufacturer's website to find driver downloads, BIOS updates, and the full specification sheet. Pairing that with the BIOS version (visible in msinfo32 under "BIOS Version/Date") tells you whether you're running the latest firmware — something that matters when troubleshooting stability issues or preparing for a CPU upgrade.

The Variable That Changes Everything

Which method makes the most sense depends on your situation — whether Windows is accessible, whether you're comfortable in the BIOS, whether you're troubleshooting a dead system or just checking specs for a future upgrade. A system that won't POST entirely calls for physical inspection; a healthy running system makes the CMD one-liner the obvious first step.

What you're actually going to do with the model number once you have it shapes which details matter most — and that part depends entirely on your specific setup and what you're trying to solve. 🔧