You’re sitting there staring at your PC wondering how to check what motherboard i have and honestly, you’re not alone, half the people who build or buy a prebuilt computer never even look at the board sitting inside it until something breaks or they want to upgrade the RAM. Maybe you’re trying to figure out if your machine supports a new processor, or maybe a friend online just asked “what board you running” and you blanked completely. Either way, that little panic of not knowing your own hardware is more common than people admit.
Why Would You Even Need To Know This
Its a fair question honestly. Most folks go years without ever needing this info, then suddenly they need to update a BIOS, add more memory, or troubleshoot a weird compatibility issue and boom, they realize they have absolutely no clue what’s inside their own case. Knowing your motherboard model tells you things like:
- What CPU sockets and generations it supports
- How much RAM it can handle and what speed
- Which BIOS version you’re on and if updates exist
- What expansion slots you have for GPUs, SSDs, wifi cards etc
- Whether your board even still gets driver support from the manufacturer
A 2023 survey from Newegg (yes they actually track this stuff) found that a huge chunk of return requests for RAM and CPUs came down to buyers not knowing their board specs beforehand. So this isn’t just some nerdy trivia thing, it actually saves you money and headache.
The Fastest Way: Using Windows Built In Tools
If you’re on Windows you honestly don’t need to download anything extra, Microsoft baked this info right into the OS, people just don’t know where to look.
Using System Information (msinfo32)
This is probably the quickest route and it works on basically every version of Windows from 7 all the way to 11.
- Press Windows key + R to open Run
- Type msinfo32 and hit enter
- Wait a sec for it to load everything (it grabs a LOT of system data so give it a moment)
- Look for “BaseBoard Manufacturer” and “BaseBoard Product” under System Summary
That’s literally it, right there you’ll see something like “ASUSTeK COMPUTER INC.” for manufacturer and then a model number next to it. Sometimes the model number looks like gibberish, don’t panic, that’s normal, manufacturers name boards weird things like “PRIME Z790-A” or “TUF GAMING B650-PLUS” and yeah it looks like a keyboard smash but its intentional.
Using Command Prompt
If you’re the type who likes typing commands instead of clicking through menus (no judgment here) you can open Command Prompt and run this:
wmic baseboard get product,manufacturer,version,serialnumber
This spits out the manufacturer, the exact product name, version number and even the serial if you need it for warranty stuff. Quick note though, wmic is technically being phased out by Microsoft in newer builds, so if it doesn’t work you might need PowerShell instead, which brings us to the next option.
Using PowerShell
For newer Windows 11 installs where wmic got removed, PowerShell does the same job:
Get-CimInstance Win32_BaseBoard | Select Manufacturer, Product
Works basically identical, just a different command syntax because Microsoft loves changing things every couple years for no obvious reason.
Checking Your Motherboard Physically
Sometimes software just doesn’t cut it, maybe Windows is giving you a generic name, or you’re dual booting Linux and things get weird, or honestly you just wanna SEE the thing with your own eyes. In that case you gotta open the case.
Here’s roughly what that looks like, don’t worry its not as scary as it sounds:
- Power off the PC completely and unplug it, seriously don’t skip this
- Ground yourself somehow, touch a metal part of the case or wear an anti static strap if you got one
- Remove the side panel, usually just a couple thumbscrews these days
- Look directly at the motherboard itself, the model name is almost always printed somewhere on the board, often near the RAM slots or PCIe slots
- If you can’t spot text, grab a flashlight and look closer, sometimes its etched small or partially covered by a cable
Manufacturers usually print stuff like “Z690 AORUS ELITE” or “MPG B550 GAMING PLUS” right on the silkscreen, its usually white or silver lettering.
Third Party Software Options
If the built in Windows tools feel clunky or you want way more detail (temps, voltages, full hardware breakdown) there’s some solid free programs people swear by.
| Tool | What It’s Good For | Cost |
|---|---|---|
| CPU-Z | Quick motherboard, CPU, RAM info in one clean tab | Free |
| HWiNFO | Deep dive sensor data plus board info | Free |
| Speccy | Simple overview, good for beginners | Free version available |
| AIDA64 | Very detailed, used by enthusiasts and reviewers | Paid, trial available |
CPU-Z specifically is kind of the go to for this, been around forever, tiny download, and the “Mainboard” tab literally spells out manufacturer, model and even the BIOS version without you having to dig around. Steve Burke from Gamers Nexus has mentioned in a few of his hardware breakdown videos that CPU-Z remains “the fastest sanity check” when he needs board info on a test bench, and honestly that tracks with what most builders use too.
What If You’re On A Prebuilt PC
This one trips people up a lot, if you bought like a Dell, HP, or some prebuilt gaming rig from a big retailer, sometimes the motherboard is a custom OEM design and won’t show a normal retail model number. Instead you might see something generic looking, in that case checking the manufacturer’s own system info tool (Dell Support Assist, HP Support Assistant etc) usually gives you more accurate matching info than generic Windows tools.
Checking On Linux
If Windows isn’t your thing, Linux users got options too. Open a terminal and run:
sudo dmidecode -t baseboard
This pulls the same kind of info, manufacturer, product name, version, all from the system’s DMI table. Pretty straightforward, no extra downloads needed since dmidecode comes preinstalled on most distros.
Common Mistakes People Make
A few things worth mentioning since people mess these up constantly:
- Confusing the motherboard model with the case brand, they are NOT the same thing, your Corsair case has nothing to do with your Corsair or Asus or MSI motherboard necessarily
- Reading BIOS version numbers as the model number, they look similar sometimes but aren’t
- Forgetting that laptops usually don’t have a “traditional” swappable motherboard the same way desktops do, so a lot of this advice applies mainly to desktop towers
Wrapping This Up
At the end of the day figuring out how to check what motherboard i have really only takes a couple minutes once you know where to look, whether that’s through msinfo32, a quick CPU-Z download, or just popping the side panel off and squinting at the board itself. Doesn’t matter if you’re upgrading RAM, chasing a BIOS update, or just settling an argument with a friend about your specs, now you got like four or five different ways to confirm exactly what board is humming away inside your case.




