Identifying the exact model of your motherboard is a foundational skill for any computer user looking to upgrade components, troubleshoot hardware failures, or update critical system firmware like the BIOS. The motherboard, or "baseboard," acts as the central hub for your CPU, RAM, GPU, and storage. Because it dictates compatibility, knowing whether you have an ASUS ROG Strix or a generic OEM board from Dell determines which parts you can buy and which drivers you must install.

For those in a hurry, here is the fastest way to find your motherboard model on a Windows PC: Press Windows Key + R, type msinfo32, and press Enter. Look for the "BaseBoard Product" and "BaseBoard Manufacturer" lines in the System Summary.

While the quick method works for many, technical nuances often require more detailed investigations. This guide explores every reliable method across Windows, macOS, and Linux, including physical inspections and specialized software tools.

Why Knowing Your Motherboard Model Matters

Before diving into the "how," it is important to understand the "why." The motherboard is not a static piece of hardware; it is a complex ecosystem.

Hardware Upgrades and Compatibility

If you intend to upgrade your processor, you cannot simply buy the latest chip. You must verify that your motherboard’s socket (e.g., LGA 1700 or AM5) and chipset (e.g., Z790 or B650) support the new CPU. Similarly, RAM compatibility depends on whether your board supports DDR4 or DDR5 and what maximum frequency it can handle.

BIOS and UEFI Updates

BIOS updates can improve system stability, support new CPUs, and patch security vulnerabilities. However, flashing the wrong BIOS file can "brick" your motherboard, rendering the computer useless. To find the correct update on a manufacturer's support page, you must have the exact model number and, often, the specific revision number (e.g., Rev 1.0 vs. Rev 2.0).

Driver Management

When performing a clean installation of an operating system, you may need specific drivers for onboard audio, Wi-Fi, or Ethernet controllers. Searching for these by the motherboard model is significantly more efficient than trying to identify individual chips on the circuit board.

How to Find Motherboard Model on Windows Using Built-in Tools

Windows offers several ways to query hardware information without requiring third-party downloads. These methods vary in the level of detail they provide.

Using the System Information Utility (msinfo32)

The System Information tool is the most user-friendly graphical interface for identifying hardware.

  1. Press the Windows Key + R to open the Run dialog box.
  2. Type msinfo32 and hit Enter.
  3. Ensure "System Summary" is selected in the left-hand pane.
  4. In the right-hand pane, scroll down to find:
    • BaseBoard Manufacturer: The company that built the board (e.g., Micro-Star International, Gigabyte, ASRock).
    • BaseBoard Product: The specific model name (e.g., B450 TOMAHAWK MAX).
    • BaseBoard Version: Often relates to the physical revision of the hardware.

Experience Note: In some pre-built systems from companies like HP or Lenovo, the "BaseBoard Product" might display a string of numbers or a internal code. If you see this, the motherboard is a proprietary OEM model, and you should use the computer's overall model name for support.

Using Command Prompt (WMIC)

For users who prefer a text-based interface or need to script hardware inventory, the Windows Management Instrumentation Command-line (WMIC) is highly effective.

  1. Type cmd in the Windows search bar and open the Command Prompt.
  2. Copy and paste the following command: wmic baseboard get product,Manufacturer,version,serialnumber
  3. Press Enter.

The output provides a clean table. The "Product" column is your motherboard model. If "SerialNumber" returns a value like "Default string" or "None," it simply means the manufacturer did not hardcode a unique serial into the firmware, which is common for custom-built boards.

Using PowerShell

PowerShell provides a more modern approach to system queries and is often more reliable on Windows 10 and 11.

  1. Right-click the Start button and select Windows Terminal or PowerShell.
  2. Enter the following command: Get-WmiObject -Class Win32_BaseBoard | Select-Object Manufacturer, Product, SerialNumber, Version
  3. Press Enter.

PowerShell is particularly useful if you are managing multiple computers on a network, as this command can be adapted to pull motherboard data from remote machines.

Using the DirectX Diagnostic Tool (dxdiag)

While primarily used for troubleshooting graphics and sound issues, the DirectX Diagnostic Tool can sometimes reveal motherboard information under the "System Model" field.

  1. Press Windows Key + R.
  2. Type dxdiag and press Enter.
  3. Look for System Manufacturer and System Model.

Note that for custom PCs, this often mirrors the information found in msinfo32. For laptops, "System Model" refers to the entire laptop model rather than the specific motherboard part number.

Identifying Motherboard Information on macOS

Apple does not use the term "motherboard"; instead, they refer to it as a "Logic Board." Because Apple controls both the hardware and software, logic boards are proprietary and not interchangeable between different Mac models.

Using About This Mac

The simplest way to identify your Mac's hardware generation is through the built-in system overview.

  1. Click the Apple Menu in the top-left corner of the screen.
  2. Select About This Mac.
  3. You will see the model name and year (e.g., MacBook Pro, 14-inch, 2023).

Using System Report

For more granular details, such as the Board ID, you need the System Report.

  1. In the "About This Mac" window, click on More Info (or System Report on older macOS versions).
  2. Under the Hardware section, look at the Model Identifier (e.g., Mac14,5).
  3. Look for the Serial Number.

Experience Note: Unlike Windows PCs, you cannot search for a "logic board driver." Everything is handled through macOS updates. However, if you are looking for repair parts, you should take your serial number to a reputable database like EveryMac to find the specific "Apple Part Number" or "Board ID" associated with your machine.

How to Find Motherboard Model on Linux

Linux users have powerful command-line utilities that provide deeper hardware access than almost any other operating system.

Using dmidecode

The dmidecode command parses the Desktop Management Interface (DMI) table to describe hardware components.

  1. Open your Terminal.
  2. Enter the following command: sudo dmidecode -t baseboard
  3. Enter your password when prompted.

This will output the manufacturer, product name, version, and serial number. It is the most "official" way to get motherboard data on Linux.

Using lshw (List Hardware)

If dmidecode provides too much text, lshw can provide a more readable summary.

  1. In the terminal, type: sudo lshw -short -class bus
  2. Look for the entry under "description" that says "Motherboard" or "System board."

Using the /sys/ File System

Linux stores system information in virtual files. You can read these directly without installing extra tools.

  1. To find the manufacturer: cat /sys/class/dmi/id/board_vendor
  2. To find the model: cat /sys/class/dmi/id/board_name

This method is extremely fast and works on almost every distribution, from Ubuntu to Arch Linux.

Third-Party Software for Advanced Hardware Identification

Sometimes, built-in system tools return "To Be Filled By O.E.M." or "Not Available." This usually happens with custom-built PCs where the BIOS hasn't been configured with descriptive strings. In these cases, third-party software can often bypass these limitations by querying the hardware components directly.

CPU-Z (The Gold Standard for Quick Checks)

CPU-Z is a lightweight, free utility that has been the favorite of PC enthusiasts for decades. It doesn't require a complex installation (you can use the portable ZIP version).

  • How to use it: Open the app and click on the Mainboard tab.
  • What it shows: It lists the Manufacturer, Model, Chipset, Southbridge, and—most importantly—the BIOS Version and Date. This is invaluable when you need to check if your BIOS is current before an upgrade.

HWInfo (Best for In-Depth Monitoring)

If you need to know more than just the model—such as VRM temperatures or PCIe lane distribution—HWInfo is the superior tool.

  • Experience Note: When launching HWInfo, select "Summary-only" for a quick look at your specs. It provides a detailed breakdown of the motherboard’s capabilities, including the exact chipset stepping and supported memory speeds. We often use this during stress testing to see how the motherboard handles thermal loads.

Speccy

Developed by the creators of CCleaner, Speccy offers a very clean, aesthetic interface. It is excellent for non-technical users who want to see their motherboard model alongside a real-time temperature reading of the board's sensors.

How to Identify a Motherboard Physically

There are scenarios where software methods are impossible. Perhaps the computer won't boot, or you are looking at a spare part you found in a closet. Identifying a motherboard by sight requires a keen eye for "silkscreening"—the white text printed directly on the circuit board.

Where to Look for Printed Text

Manufacturers usually print the model name in high-contrast ink in one of three locations:

  1. Between the CPU Socket and the RAM Slots: This is the most common spot for ATX and Micro-ATX boards.
  2. Between the PCIe Slots: Look between the long slots where you would plug in a graphics card. Manufacturers like ASUS and MSI often print the model name here in large letters.
  3. Near the Edge of the Board: Sometimes the model is printed near the 24-pin power connector.

Understanding Revision Numbers

When looking at the board, keep an eye out for text like "REV: 1.03" or "v2.0." This is the Revision Number. A "Gigabyte GA-B450M-DS3H Rev 1.0" and a "Rev 2.0" might look identical but require completely different BIOS files. Always verify the revision number before attempting firmware updates.

Safety Precautions for Physical Inspection

  1. Power Down: Unplug the power cable from the wall.
  2. Static Discharge: Touch a grounded metal object (like the computer case's metal frame) before touching the motherboard to prevent static electricity from frying sensitive components.
  3. Lighting: Use a flashlight. Motherboards are often dark (black or brown), and the text can be shadowed by large heatsinks or the CPU cooler.

Special Case: Pre-built Systems (Dell, HP, Lenovo)

If you own a pre-built desktop or a laptop, searching for the "motherboard model" might lead you to a dead end. These companies use proprietary boards that aren't sold at retail.

Use the Serial Number or Service Tag

Instead of looking for a motherboard model like "0X66GF," use the computer's Service Tag (Dell) or Serial Number (HP/Lenovo).

  1. Locate the sticker on the back or bottom of the chassis.
  2. Go to the manufacturer's official support website.
  3. Enter the Service Tag.
  4. The site will list the exact specifications of the motherboard originally shipped with that unit.

Identifying by Chipset

If you are trying to figure out what CPU you can upgrade to in a pre-built, use a tool like CPU-Z to find the Chipset (e.g., Intel H610). You can then search for that chipset's compatibility list, though be aware that OEM BIOS limitations might still prevent certain CPUs from working.

Troubleshooting Common Issues

"To Be Filled By O.E.M."

If all software methods return this message, it means the motherboard manufacturer did not program the model name into the DMI (Desktop Management Interface) table. This is common with "white-box" systems or very cheap motherboards.

  • Solution: You must use the physical inspection method. Open the case and look for the model name printed on the PCB.

The Model Name is Too Long/Confusing

Motherboard names often look like a cat walked across a keyboard (e.g., ASUS ROG MAXIMUS Z790 HERO).

  • Breaking it down:
    • ASUS: The Manufacturer.
    • ROG MAXIMUS: The Product Line (Brand).
    • Z790: The Chipset (the most important part for compatibility).
    • HERO: The specific tier/feature set.

Laptop Motherboards

Laptops do not have standardized motherboard sizes or models. If you need a replacement, you must search for the "System Board" part number, which is usually found on a small barcode sticker near the RAM slots, often hidden under a plastic flap or a piece of Mylar.

Summary of Methods by Platform

Operating System Primary Method Command / Tool
Windows System Information msinfo32
Windows (CMD) WMIC wmic baseboard get product
macOS About This Mac System Report -> Model Identifier
Linux Terminal sudo dmidecode -t baseboard
Any (No Boot) Physical Inspection Look for text between PCIe/RAM slots
Any (Detail) Third-Party Software CPU-Z or HWInfo

Conclusion

Finding your motherboard model is the first step in taking control of your PC’s lifecycle. Whether you use the quick msinfo32 command on Windows, delve into the terminal on Linux, or open your case for a physical inspection, the information is always accessible if you know where to look. By identifying the manufacturer, model, and revision number, you ensure that your next hardware upgrade or BIOS update is performed safely and correctly. Always remember to double-check the revision number for custom builds and rely on Service Tags for brand-name pre-built systems.

Frequently Asked Questions (FAQ)

Can I find my motherboard model in the BIOS?

Yes. Restart your computer and tap the Delete or F2 key during the boot process to enter the BIOS/UEFI. The motherboard model and BIOS version are usually displayed prominently on the main dashboard or the "Information" tab.

Does the motherboard model change if I update the BIOS?

No. The motherboard model is a physical attribute. The BIOS version will change, but the model name (e.g., ASUS Prime Z590) remains the same.

Is the "BaseBoard" the same as the "Motherboard"?

Yes. In technical documentation and Windows system tools, the motherboard is frequently referred to as the "BaseBoard."

How do I know if my motherboard is ATX or Micro-ATX?

The model name often hints at the size. "M" often stands for Micro-ATX (e.g., B450M), and "I" often stands for Mini-ITX (e.g., B450I). However, the surest way is to check the manufacturer's spec sheet using the model number you just found.

Can I find the motherboard model without opening the case if the PC won't turn on?

No. If the system has no power, the software cannot query the hardware. You must open the side panel and look for the printed model name on the PCB.