We can get computer model (like manufacturer name, model number) as below.
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
{ 1 comment… read it below or add one }
Thanks very much for this. Don’t know why this isn’t on every manufacturer’s support site