You go to download chipset drivers, update BIOS, or check CPU compatibility and every support page asks the same question: what motherboard are you on. If you guess, you can easily install the wrong firmware, grab the wrong manual, or waste an hour troubleshooting a problem that was just “wrong board model.”
This guide shows how to check motherboard model on PC fast, using tools that already exist in Windows, plus clean terminal commands for Linux.
Windows Built In
Zero Downloads
- Run msinfo32
- Read BaseBoard Product
- Copy Manufacturer And Version
- Works On Windows 11 And 10
Command Line
Copy Paste Output
- PowerShell Get CimInstance
- Clean Text For Support
- WMIC Only If Present
- Great For Remote Help
Terminal Methods
DMI And Sysfs
- dmidecode Baseboard
- board_name In sysfs
- sudo For Serial Numbers
- Best On x86 PCs
BIOS And Physical
Works When Windows Is Broken
- UEFI Information Screen
- Model Printed On PCB
- Revision Markings Included
- Most Reliable Fallback
Why Your Motherboard Model Matters On PC Drivers BIOS And Compatibility
Your motherboard model is not trivia. It is the identifier that decides which BIOS file is safe, which chipset drivers apply, and which manuals match your exact ports and slot layout.
If you are doing anything beyond basic gaming, knowing the exact board model also helps with RAM profiles, CPU support lists, and feature support like Resizable BAR. It is the foundation for any hardware level troubleshooting or upgrades.
Do Not Flash BIOS By Guessing
A BIOS update is one of the few PC actions where the wrong file can create a real problem. Take 60 seconds to confirm the exact motherboard model and revision before downloading anything.
What To Look For When You Check Motherboard Model The Exact Fields
Most tools will show three to four pieces of motherboard information. This is what you actually want to record for a clean, unambiguous motherboard identification.
- Manufacturer: The brand that produced the board (ASUS, MSI, Gigabyte, ASRock, Dell, HP, Lenovo).
- Product: The board model identifier. This is the main thing you search for on support pages.
- Version: A revision string if the vendor reports one. Many retail boards also print a revision on the PCB.
- Serial Number: Optional. This is often blank or generic on some systems, and it is not required for most driver downloads.
Copy The Model Exactly
Board names are picky. “B550M Pro” and “B550M Pro VDH” are not the same board. Copy the Product string exactly as shown, including suffixes like WIFI, MAX, AX, D4, DDR5, or II.
How To Check Motherboard Model On Windows 11 And Windows 10 Fast Built In Methods
If you want the quickest answer with the fewest steps, use System Information first. If you want clean copyable output for a support ticket, use the PowerShell command.
Windows Motherboard Model Quick Reference
Method 1 Check Motherboard Model With System Information msinfo32
This is the simplest way to find motherboard model on Windows 11 or Windows 10. It is built in, it is fast, and it usually shows the exact board name under System Summary.
- Press Windows + R to open Run.
- Type msinfo32 and press Enter.
- In the left panel, click System Summary (it is usually selected by default).
- On the right, scroll until you see:
- BaseBoard Manufacturer
- BaseBoard Product
- BaseBoard Version
BaseBoard Product is typically the motherboard model string you need. If you are copying info to share with someone, grab Manufacturer, Product, and Version together so there is no ambiguity.
Method 2 Find Motherboard Model With PowerShell Command
If you want the cleanest and quickest text output, PowerShell is the best option. This is also the easiest way to grab the motherboard model over a call or while troubleshooting.
Open Windows PowerShell or Windows Terminal, then run this command.
Get-CimInstance -ClassName Win32_BaseBoard | Select-Object Manufacturer, Product, Version, SerialNumber
You should see the manufacturer and product model in a simple table. If SerialNumber is blank or looks generic, ignore it. The Product value is the motherboard model you care about.
Method 3 Check Motherboard Model In Command Prompt With WMIC If Available
Many guides still recommend WMIC. It can work, but it is not guaranteed to be present on every modern Windows install. If you try it and the command is missing, skip it and use the PowerShell method above.
wmic baseboard get Manufacturer,Product,Version,SerialNumber
If this returns your board details, you are done. If it fails with “not recognized,” that is normal on some Windows 11 builds and clean installs. Use msinfo32 or PowerShell instead.
Method 4 Use CPU Z Or HWiNFO If You Want A Visual UI
Sometimes Windows reports an OEM string that is not helpful. In those cases, a hardware info tool can present the same baseboard data in a clearer way, plus chipset and BIOS details.
- CPU Z: Open the Mainboard tab, then read Manufacturer and Model.
- HWiNFO: Open System Summary or Motherboard section, then read the board name and revision if shown.
How To Check Motherboard Model Without Windows BIOS UEFI And Physical Identification
If Windows will not boot, you can still find motherboard model. Your two practical options are BIOS or UEFI screens, or physically checking the board itself.
Check Motherboard Model In BIOS Or UEFI The No OS Method
Restart your PC and enter BIOS or UEFI setup during boot. The key varies by system, but Delete and F2 are common. Once you are inside, look for an Information, Main, or System screen that lists the board name and BIOS version.
This method is especially useful on older PCs where Windows tools show incomplete strings.
Find Motherboard Model On The Board Itself Best For Exact Revisions
On most desktop motherboards, the model name is printed directly on the PCB. You may also see a revision label like “REV 1.0” or similar. If you are downloading BIOS, matching the revision can matter on some platforms.
- Power down the PC and unplug it.
- Open the side panel.
- Look for large printed text near the PCIe slots, RAM slots, or chipset heatsink.
- Write down the model string and any revision marking.
How To Check Motherboard Model On Linux dmidecode And sysfs
Linux gives you two clean ways to find motherboard model. The first is dmidecode. The second is reading the DMI strings from sysfs. Both are reading the same general source of information, but permissions differ by system.
Method 1 Use dmidecode To Get Baseboard Information
Run this in a terminal. You will usually need sudo.
sudo dmidecode -t baseboard
Look for “Base Board Information” and record the Manufacturer, Product Name, and Version.
Method 2 Read Motherboard Model From sysfs
On many Linux systems, DMI information is exposed as readable files. These are the most useful ones for motherboard identification.
cat /sys/class/dmi/id/board_vendor
cat /sys/class/dmi/id/board_name
cat /sys/class/dmi/id/board_version
If you also want serial number, it may require sudo depending on your distro and security settings.
sudo cat /sys/class/dmi/id/board_serial
Why Your Motherboard Model Might Look Wrong OEM Strings And Missing DMI Data
Sometimes you run msinfo32 or PowerShell and the “Product” field is not a retail name. You might see a short code, a placeholder string, or something that does not match what you expected. This does not mean the tool is broken. It usually means the board is OEM, the SMBIOS strings were not populated fully, or you are inside a VM.
Common Motherboard Model Output Issues
| What You See | What It Usually Means | Best Fix |
|---|---|---|
| To Be Filled By O.E.M. | Vendor did not populate SMBIOS fields | Physical Check or use the PC model for support |
| Short Code Like 0D3xxx | OEM baseboard identifier for Dell, HP, Lenovo, etc | Search OEM support using the system model and service tag |
| Serial Number Blank | Not provided or locked by firmware | Ignore it, you usually do not need it |
| Virtual Machine | VM exposes generic DMI strings | Use VM platform settings for hardware identifiers |
Motherboard Model Check Step By Step The Fastest Reliable Flow
If you want a simple process that works on almost every PC, follow this order. You are moving from fastest to most reliable.
Motherboard Model Identification Flow
Press Windows + R, type msinfo32, then read BaseBoard Manufacturer and BaseBoard Product. This is the fastest way to check motherboard model on Windows.
Run Get CimInstance Win32 BaseBoard and compare the Product string. If both match, you have the correct motherboard model.
Serial numbers are not always populated. Focus on Manufacturer and Product first because that is what driver and BIOS pages care about.
If Windows shows a placeholder string, restart and check the BIOS or UEFI information screen for a clearer board identifier.
For retail desktop boards, the PCB print is the most trustworthy source, especially when you need the exact revision before a BIOS update.
Run sudo dmidecode -t baseboard or read /sys/class/dmi/id/board_name to find motherboard model on Linux quickly.
What To Do After You Find Your Motherboard Model The Useful Next Steps
Once you have the exact motherboard model, you can stop guessing and start doing targeted fixes and upgrades. This is where most people accidentally waste time because they do not know their board name.
If your goal is performance stability, the motherboard model is also what you need before changing firmware level options. It is much easier to follow proven BIOS optimization guidance when you can confirm your exact board and firmware version first.
And if you are checking your motherboard model because you want your RAM running at the speed you paid for, having the correct board name makes it easier to enable the correct memory profile safely, like XMP or EXPO without clicking random options.
If the reason you opened this article is that the PC feels slow, unstable, or stutters under load, do not ignore basics like thermals and background pressure. A quick sanity check using a practical lag troubleshooting flow can save you from chasing motherboard issues that are actually heat or software conflicts.
Troubleshooting Motherboard Model Checks Quick Fixes
If msinfo32 shows a placeholder string: confirm with PowerShell, then use BIOS or physical inspection. Many OEM systems do not expose a retail board name.
If WMIC does not work: do not fight it. Use PowerShell Get CimInstance instead. It is the modern replacement for most WMIC lookups.
If you are on a laptop: you may get an internal board code rather than a retail motherboard model. In that case, use the laptop model and OEM support page for BIOS and drivers.
Conclusion
The fastest way to check motherboard model on PC is msinfo32 on Windows or dmidecode on Linux. On Windows 11 and Windows 10, look for BaseBoard Manufacturer and BaseBoard Product. If you want a clean text output, use PowerShell with Get CimInstance Win32 BaseBoard. If the system reports a weird OEM string, fall back to BIOS or the physical label on the motherboard.
Once you know the exact board model, every driver download, BIOS update, and upgrade decision gets easier because you are working from facts instead of guesses.
Make Your PC More Consistent With Hone
If you want smoother performance without chasing random tweaks, Hone helps optimize your system so frame times stay stable and stutters drop.
Try Hone FreeFAQ
How do I check motherboard model on Windows 11
Press Windows + R, type msinfo32, then look in System Summary for BaseBoard Manufacturer and BaseBoard Product. BaseBoard Product is usually the motherboard model string you need.
What is the best command to find motherboard model in Windows
Use PowerShell: Get CimInstance Win32 BaseBoard and read the Manufacturer and Product fields. This is the cleanest way to copy paste motherboard model output.
Why does my motherboard model show To Be Filled By O.E.M.
That usually means the vendor did not populate the SMBIOS fields fully, which is common on some OEM systems. Confirm with BIOS or check the board physically for a printed model name.
How do I find motherboard model on Linux
Run sudo dmidecode -t baseboard and read the Manufacturer and Product Name fields. You can also read /sys/class/dmi/id/board_name for a quick motherboard model string.
Is CPU Z safe for checking motherboard model
CPU Z is widely used for hardware identification. It shows your motherboard manufacturer and model under the Mainboard tab, which is useful when you want a visual UI instead of Windows system tools.

Youtube