


All critical subsystem settings are exposed through WMI, WMI treats data as objects that are in collections of one or more items. See this guide on how to find computer model, description, and serial number in the Windows environment
Using CLI to get Computer Model Information
– Get computer model
c:>wmic csproduct get vendor, version
Output: Vendor Version LENOVO ThinkPad T41X
c:>wmic computersystem get model,name,manufacturer,systemtype
Output: Manufacturer Model Name SystemType LENOVO xxxxxG1 WINCMD-PC x64-based PC
Get your device manufactural:To find the make or manufacturer of an OEM PC, run the following command from a command prompt.
wmic computersystem get manufacturer
This will returns for Dell and Lenovo are “Dell Inc.” and “Lenovo”
Get laptop model: To get the model, run the same command as above, but replace “manufacturer” with “model” Top that off with a folder for OS version and platform, and you have something to use.
C:>wmic computersystem get model
Output: Model ThinkPad T43X
I hope you found this blog post helpful. If you have any questions, please let me know in the comment session.