Ever wonders how can you find laptop/desktop model or serial number using command prompt?
Here is a quick command that you can use to find the Serial Number of your machine.
To find the model number using WMI, click the Start Menu, type “CMD” (without quotation marks) in the search bar and click cmd.exe under the program section. Next type in the following command and wait for the system to gather information.
wmic csproduct get name
Sometimes it takes a while to populate the result, but this will give you your machine’s model number by pulling the information from BIOS.
To find the serial number using WMI, click the Start Menu, type “CMD” (without quotation marks) in the search bar and click cmd.exe under the program section. Next type in the following command and wait for the system to gather information.
wmic bios get serialnumber
Sometimes it takes a while to populate the result, but this will give you your machine’s serial number by pulling the information from BIOS.
Please leave your comments below with your thoughts.