Get Computer Model

Sometime you need to repair your pc or software, then it is need to know your pc model. I'm showing how you get from command prompt.
Open the command prompt (Start – > CMD) and type the following command:
wmic bios get serialnumber
Another command that will also print the model number (or make) of your computer is:
wmic csproduct get name, identifyingnumber

The system model number can also be found using the System Information program available under All Programs – > Accessories – > System Tools.

 ***********************************************************

Just run the command given below to get computer model.

wmic csproduct get vendor, version

There’s another command which can be used to get the computer system model information. We can also get architecture(32bit/64bit) using this command.

wmic computersystem get model,name,manufacturer,systemtype

Based on the information you require, you can use any of the above commands. These commands return the following information on my computer.

c:\>wmic csproduct get vendor, version
Vendor  Version
LENOVO  ThinkPad T410

c:\>wmic computersystem get model,name,manufacturer,systemtype
Manufacturer  Model    Name        SystemType
LENOVO        2236EG1  WINCMD-PC  x64-based PC

Find laptop model

You can use the below command to get the model of the laptop.

C:\>wmic csproduct get version
Version
ThinkPad T430

This command would be useful to remotely fetch the model information from a bunch of computers in the network. We need to invoke this command on each of the computers and obtain the information.