Alright, so your computer? It’s nothing without its motherboard. That’s like the skeleton holding everything together. Whether you’re on a laptop, a PC, or even a Chromebook, they all rely on this one part. Did you know different brands make motherboards? You might want to know which one is inside your machine, and I’m going to show you how.
Table of Contents
What is a Motherboard, and Why Should I Care?
Think of the motherboard as the heart of your device. It keeps things ticking by linking the processor, memory, storage, and graphics. It’s also where all your upgrades plug in. Everything you do on your computer? It starts and ends with the motherboard. If you built your PC years ago or have a laptop that’s starting to age, and you forgot which motherboard it’s running on—no worries. There’s an easy way to check.
3 Simple Ways to Check Your Motherboard
Method 1: Using Windows System Information
Windows has a built-in feature that gives you the details about your system’s hardware. It’s super quick and simple.
- Hit the Windows + R keys to bring up the ‘Run‘ dialog box.
- Type msinfo32 and press OK.
- In the System Information window, look to the right—there’s your motherboard info under Baseboard Manufacturer, Product, and Version.
Method 2: Using Command Prompt
Command Prompt is like an old-school text window for geeks. But don’t worry—it’s not that hard.
- Press the Windows key, type cmd, and select Run as Administrator.
- Now copy this command and hit Enter.
wmic baseboard get product,manufacturer,version,serialnumber
You’ll see your motherboard’s manufacturer, product name, serial number, and version.
Method 3: Using PowerShell
PowerShell is like Command Prompt’s cooler cousin. It’s a bit more powerful, but for your purposes, it’s just as simple.
- Hit the Windows key, search for powershell, and run it as Administrator.
- Paste this command and press Enter.
Get-WmiObject Win32_BaseBoard | Format-Table –Auto Manufacturer,Product,SerialNumber,Version
Your motherboard’s details will pop right up.
All methods will give you the same info in a couple of clicks. Keep these steps handy. You never know when you’ll need them—whether you’re upgrading your rig or just curious.