The Computer Oracle

How can I find out what motherboard is in my computer?

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Over Ancient Waters Looping

--

Chapters
00:00 How Can I Find Out What Motherboard Is In My Computer?
00:21 Accepted Answer Score 287
00:39 Answer 2 Score 38
00:50 Answer 3 Score 21
01:01 Answer 4 Score 16
01:09 Answer 5 Score 13
01:36 Thank you

--

Full question
https://superuser.com/questions/175213/h...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#windows7 #motherboard

#avk47



ACCEPTED ANSWER

Score 287


Daveb was moving in the right direction. You need to type the following within a command prompt:

wmic baseboard get product,Manufacturer,version,serialnumber

This will provide you with the maker of the motherboard, model number, and serial number.




ANSWER 2

Score 38


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

enter image description here




ANSWER 3

Score 21


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




ANSWER 4

Score 16


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




ANSWER 5

Score 13


Open the Command Prompt (cmd) and type:

wmic cpu get name,CurrentClockSpeed,MaxClockSpeed

This command will tell you the system motherboard (that happen to be the name) and its UUID.

wmic bios get name,serialnumber,version

This will tells you the name if your BIOS, current version and its serial number if there is any.

Technet has a useful reference for WMIC commands.