The laptop’s model and serial number usually can be found on the bottom case of the laptop as either a printed sticker or laser etched into the cover.
Also the model and the serial number of a laptop can easily be found using a Windows command prompt (CMD).
This “command prompt method” works for all the laptop vendors, including: HP, Lenovo, Dell, Acer, Asus, etc.
In this show note i will show how to find the laptop’s model and serial number from the command prompt using the wmic
command.
Cool Tip: How to check the BIOS version using CMD & PowerShell! Read more →
Find Laptop’s Model & Serial Number
To find the laptop’s model number:
C:\> wmic csproduct get Name --- Name HP ProBook 440 G6
To find the laptop’s serial number:
C:\> wmic csproduct get IdentifyingNumber --- IdentifyingNumber 6DE8263Q7P
To get the complete information about the laptop, including the vendor, model, serial number and UUID:
C:\> wmic csproduct --- Caption Description IdentifyingNumber Name SKUNumber UUID Vendor Version Comp... Computer... 6DE8263Q7P HP ProBook 440 G6 9... HP
Cool Tip: How to check Windows version from CMD & PowerShell! Read more →