Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I want to find out the exact model of my computer's motherboard so that I can see what sort of memory chip, graphics cards and other components it supports.

I'm using Windows 7 Ultimate 64-bit.

share|improve this question
You are better off opening the case to get the motherboard model number and Revision number, then go the the manufacturers site to look for drivers. – Moab Jan 12 '11 at 17:26

13 Answers

up vote 9 down vote accepted

Belarc Advisor will tell you what type of motherboard you have.

share|improve this answer

CPU-Z can identifiy mainboards, among other components. I think that should do it.

share|improve this answer

Daveb was moving the right direction.

"wmic baseboard get product,Manufacturer"

will get you the maker of the motherboard and the model number.

share|improve this answer

Open CommandPrompt (cmd) and type

wmic cpu get name,CurrentClockSpeed,MaxClockSpeed This command will tell you the system motherboard (that happen to be the name) and it’s UUID

wmic bios get name,serialnumber,version This will tells you the name if your BIOS, current version and it’s serial number if there is any.

Technet has a useful reference for WMIC commands

share|improve this answer
1  
wmic cpu get name,CurrentClockSpeed,MaxClockSpeed seems to list - CurrentClock Speed - MaxClockSpeed and the Processor Name/Model – alke2007 Feb 23 '12 at 12:29

Another option: I happen to like SIW - System Information for Windows

ahh nais pigsure

share|improve this answer

If you have a desktop system that was built from parts: Open the case. The motherboard brand and model number is printed on it.

If you have a laptop, or purchased a desktop from a OEM such as Dell: there's not really a motherboard model on the thing, you're going to have to go with the computer's model number.

share|improve this answer

CPU-Z works too, has a 64 bit version.

share|improve this answer

There are several products you can install to get this information, but the one I've used in the past is Belarc Advisor (useful for auditing):

http://www.belarc.com/free_download.html

share|improve this answer
Just be careful when you post these profiles on the web, they contain your software serial numbers. – Daniel Beck Jan 12 '11 at 17:17

The motherboard itself must comply with a standard called DMI. This provides information such as the motherboard model, BIOS version, the number of RAM sticks, their capacity and speed, and basically anything else that is related to your motherboard.

There are two popular programs that can retrieve this information. CPU-Z and dmidecode. While CPU-Z is a user-friendly alternative, dmidecode has the advantage of being a nice, clean tool that works on practically all operating systems.

share|improve this answer

It's really easy to find mother information using script. Please proceed to check it out.

share|improve this answer
2  
It would be nice to include the essential parts of the answer here, and provide the link only for future reference. – slhck Mar 28 '12 at 14:34
wmic csproduct get name,identifyingnumber

Name should be the serial # of your motherboard and IdentifyingNumber is probably blank, but it might be an additional sub-serial #.

share|improve this answer

Yet another option to launch dxdiag tool from the start menu:

enter image description here

share|improve this answer

Speccy is an Advanced System Information tool for your PC.

enter image description here

(It is made by the same company that designed CCleaner)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.