Find Model Number & Serial Number Of PC From Command Line
Here is a very simple script to return model and serial number information for your computer.
To retrieve serial number of the computer run the following command from command line
wmic bios get serialnumber
To retrieve model name of the computer run the following command from command line
wmic csproduct get name
This code doesn’t return information for all computers, but I’ve found it very usefull where its available.
Loading...