How to Find Your Motherboard Model (Every Method That Works)
Knowing your motherboard model unlocks a surprising amount of useful information — which RAM is compatible, whether your BIOS can be updated, what CPU upgrades are possible, and which drivers to download. The good news is that you don't need to open your PC case to find it. Several quick methods work from within Windows, macOS alternatives aside, and a physical inspection is always a fallback.
Why Your Motherboard Model Matters
Your motherboard is the central circuit board connecting every component in your desktop or laptop — CPU, RAM, storage, GPU, and peripherals. The model number identifies its specific chipset, socket type, expansion slots, and supported firmware. Without it, you're guessing at compatibility, and guessing at compatibility gets expensive.
Common reasons people need this information:
- Downloading the correct chipset or audio drivers
- Checking maximum supported RAM speed and capacity
- Identifying which CPUs are socket-compatible
- Updating BIOS/UEFI firmware safely
- Troubleshooting hardware conflicts
Method 1: Windows System Information Tool 🖥️
This is the fastest method for most users and requires zero technical skill.
- Press Windows + R to open the Run dialog
- Type
msinfo32and press Enter - In the System Summary panel, look for:
- BaseBoard Manufacturer — the brand (e.g., ASUS, MSI, Gigabyte)
- BaseBoard Product — the specific model number (e.g., B550-PLUS, MAG Z690)
- BaseBoard Version — the board revision, relevant for BIOS updates
This method pulls data directly from the motherboard's firmware, so it's reliable on most machines. Occasionally, OEM-built systems (Dell, HP, Lenovo) return generic strings like "Base Board" or populate the product field with the system chassis model instead — a known quirk of how some manufacturers encode firmware strings.
Method 2: Command Prompt (WMIC)
If System Information returns vague results, the Windows Management Instrumentation Command-line (WMIC) tool often fills in the gaps.
- Open Command Prompt (search "cmd" in the Start menu)
- Type the following and press Enter:
wmic baseboard get product, manufacturer, version, serialnumber This outputs the manufacturer, product name, version, and serial number in a clean table. The serial number is particularly useful if you need to look up warranty status or cross-reference official support documentation.
PowerShell alternative — if you prefer PowerShell:
Get-WmiObject Win32_BaseBoard | Select-Object Manufacturer, Product, Version Both return the same underlying data from Windows' hardware abstraction layer.
Method 3: CPU-Z (Third-Party Tool)
CPU-Z is a free, widely trusted system information utility. It's especially useful when built-in tools return incomplete data.
After installation:
- Open CPU-Z and click the Mainboard tab
- You'll see the Manufacturer, Model, Chipset, Southbridge, and BIOS version clearly listed
CPU-Z reads directly from hardware registers rather than relying solely on firmware strings, which makes it more accurate on systems where WMIC returns generic OEM values. It also shows the BIOS version and release date, which is useful before attempting any firmware update.
Method 4: Physical Inspection
Sometimes software-based methods aren't available — you're building a system, the OS won't boot, or you've inherited a machine with no OS installed.
In those cases, the model number is printed directly on the motherboard itself:
- Look for a large silkscreen label between the PCIe slots or near the RAM slots
- It typically reads something like:
ROG STRIX B550-F GAMINGorZ790 AORUS ELITE - Smaller boards (Micro-ATX, Mini-ITX) may print it near the CPU socket or along an edge
You'll need to remove the side panel of a desktop tower. On laptops, the motherboard isn't practically accessible without disassembly — use software methods instead.
Method 5: Check the Original Box or Documentation
If you built your PC yourself or kept the original packaging, the motherboard model is printed on the box, the invoice, and the included manual. For pre-built systems, the model may appear on a sticker on the chassis or in the original receipt from the manufacturer.
This is worth checking first if you have the paperwork — no tools or commands needed.
Quick Comparison: Which Method to Use
| Method | Requires OS? | Technical Skill | Best For |
|---|---|---|---|
| System Information (msinfo32) | Yes | None | Fast everyday check |
| WMIC / PowerShell | Yes | Low | More detailed output |
| CPU-Z | Yes | Low | Accurate, visual interface |
| Physical inspection | No | Medium | No OS access, new builds |
| Box/documentation | No | None | Original purchase records |
What to Do With the Model Number Once You Have It
With the model confirmed, your next steps depend on what you're trying to accomplish. 🔍
- Driver downloads — go directly to the manufacturer's official support page and search by model
- BIOS updates — match your current BIOS version (found in the same tools above) against the latest available version; update only if there's a documented reason to do so
- RAM compatibility — look up the motherboard's QVL (Qualified Vendor List), which lists tested memory kits
- CPU upgrade paths — check which processors the board's chipset and socket officially support; the manufacturer's product page lists this
Where Things Get Board-Specific
Here's where individual setups start to diverge. A B550 board from one manufacturer may support the same socket as a B550 from another, but differ in BIOS update requirements, VRM design, and feature sets that affect which CPUs run stably. An OEM board in a pre-built desktop may share a socket type with retail counterparts but carry firmware restrictions that limit upgrade options.
Whether the model number leads you to a simple driver download or opens a longer compatibility research process depends on what your board is, what you're running on it now, and what you're trying to do next. The model is the starting point — your specific configuration determines where it takes you.