Finding The Serial Number and Model of Your Windows Computer

0

A computer serial number is a unique code assigned for identification of a single unit. It’s often required to get the warranty service when you got a problem with your computer. Usually you can find it out on a sticker adhered at back of your computer.

But there are easier alternative ways to find the same information without turning your computer upside down or sliding your body underneath the desk.

Open Command Prompt and run the following command:

wmic bios get serialnumber

If you need both serial number and model number of your computer, run the following instead which gives you both info at once.

wmic csproduct get name, identifyingnumber

C  WINDOWS system32 cmd.exe 2015 01 28 09 51 03 600x397 - Finding The Serial Number and Model of Your Windows Computer

You can also run the following cmdlet if you are a fan of PowerShell.

Get-WmiObject -Class Win32_BIOS

Windows PowerShell 2015 01 28 09 53 26 600x285 - Finding The Serial Number and Model of Your Windows Computer

If you just want to find out the model of your computer, run msinfo32 from Win+R or Command Prompt window.

System Information 2015 01 28 09 52 30 600x348 - Finding The Serial Number and Model of Your Windows Computer

That’s about it.

LEAVE A REPLY

Please enter your comment!
Please enter your name here