How to Check Your Motherboard Model (Every Method Explained)

Knowing your motherboard model isn't just trivia — it's essential when you're updating drivers, checking RAM compatibility, troubleshooting crashes, or planning an upgrade. The challenge is that manufacturers don't exactly make this information obvious. Here's every reliable method to find it, across different operating systems and situations.

Why Your Motherboard Model Matters

Your motherboard is the central hub that every other component connects to. Its model number determines:

  • Which CPU socket types it supports
  • Maximum RAM capacity and speed
  • Which expansion slots (PCIe, M.2) are available
  • Compatible BIOS/UEFI updates
  • Driver availability from the manufacturer

Without the model number, finding the right drivers or confirming upgrade compatibility becomes guesswork.

Method 1: Check via Windows Command Prompt or PowerShell 🖥️

This is the fastest method for most Windows users and doesn't require opening your PC case.

Using Command Prompt:

  1. Press Windows + R, type cmd, and hit Enter
  2. Type the following command and press Enter:
wmic baseboard get product, manufacturer, version, serialnumber 

You'll see output listing the Manufacturer, Product (the model name), Version, and Serial Number directly from the system firmware.

Using PowerShell:

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

Both commands pull data from WMI (Windows Management Instrumentation), which reads hardware information stored in the system BIOS/UEFI. The result is generally accurate, though some OEM-built systems (like pre-built desktops from Dell or HP) may return the chassis model rather than the specific board designation.

Method 2: Use System Information (msinfo32)

  1. Press Windows + R, type msinfo32, press Enter
  2. Under System Summary, look for BaseBoard Manufacturer, BaseBoard Product, and BaseBoard Version

This is the same data as the command-line method but in a visual interface — useful if you prefer navigating menus over typing commands.

Method 3: Check the BIOS/UEFI Directly

When you boot your PC, pressing a key (commonly Delete, F2, or F10 depending on the manufacturer) opens the BIOS/UEFI interface. The main or home screen typically displays the board model and firmware version prominently.

This method is particularly reliable because the information comes directly from the hardware itself — not from the OS layer — making it useful when:

  • You're troubleshooting a system that won't fully boot
  • The operating system isn't installed yet
  • You suspect the OS-reported data might be inaccurate

Method 4: Physical Inspection of the Board

If you have access to your case (or you're building from scratch), the model number is printed directly on the motherboard PCB itself. Common locations include:

  • Between the CPU socket and RAM slots
  • Along the bottom edge of the board
  • Near the PCIe slots

The text is usually formatted as the manufacturer name followed by a model code — for example, something like Z790 AORUS ELITE or B650M DS3H. On some boards, the branding is large and prominent; on others, it's a small silkscreened label requiring good lighting to read.

Method 5: Check on Linux or macOS

Linux users can run this terminal command:

sudo dmidecode -t baseboard 

This reads the DMI (Desktop Management Interface) table — the same underlying source as Windows WMI — and returns manufacturer, product name, version, and serial number.

macOS doesn't expose motherboard details in the same way since Apple integrates its own silicon and board designs tightly. On a Mac, the equivalent information is the Mac model identifier, found under:

Apple Menu → About This Mac → More Info → System Report → Hardware Overview

The Model Identifier (e.g., MacBookPro18,1) functions as Apple's version of a board identifier for compatibility and support purposes.

Method 6: Third-Party System Information Tools

Several free utilities surface motherboard details alongside other hardware specs:

ToolPlatformNotable Feature
CPU-ZWindowsDetailed board info under "Mainboard" tab
SpeccyWindowsVisual summary of all hardware
HWiNFOWindowsDeep sensor and hardware data
dmidecodeLinuxTerminal-based, raw DMI output

These tools are especially useful when you want a full picture of your system — CPU, RAM, GPU, and storage — alongside the motherboard model in one view.

Common Complications to Know About 🔍

Not every situation is clean. A few things can complicate this process:

OEM systems (pre-built PCs from major brands) sometimes report the system's chassis or marketing name rather than the actual PCB model. In these cases, cross-referencing the serial number on the manufacturer's support site usually resolves this.

Custom or white-label boards — common in budget builds or certain regional markets — may return generic strings like "To be filled by OEM" in the product field. Physical inspection is the most reliable fallback here.

Virtualized environments report the hypervisor's virtual hardware, not the underlying host motherboard, so command-line methods won't return accurate physical board data in those contexts.

What the Model Number Actually Tells You

Once you have your model number, you can look it up on the manufacturer's support page (ASUS, MSI, Gigabyte, ASRock, etc.) to find:

  • The exact chipset and socket type
  • Supported CPU generations
  • Official memory compatibility lists (QVL)
  • Available BIOS updates
  • Expansion and storage slot specifications

The model number is essentially a key that unlocks the full technical documentation for your specific board — which is where the real compatibility and upgrade decisions begin.

How far that information takes you depends on what you're actually trying to do: a straightforward driver update looks nothing like evaluating whether your board can handle a newer CPU generation or a faster RAM kit. The model is the starting point; your specific goals and current configuration shape where you go from there.