How to find Windows 10 device serial number?

Hi,

One of my customer has bring one PC for some troubleshooting in my shop. As per his claim and Invoice date, his PC is under warranty. But unfortunately, he doesn’t remember when the computer was bought and neither the PC has any information on serial numbers.

As you all aware without serial numbers is not possible to verify the warranty of the computer for any brand like HP or Dell or Asus etc., So, I need to get the serial number of the computer from the inside of Windows 10.

I tried system information but the serial number column not available in that also. So, what are my option to get the serial number from the Windows 10 OS?

Thanks

4 Likes

Hi @logan5,

To my knowledge, the best way to get the serial number of the device is from the command prompt.

Press ctrl+R and type cmd

image

In the cmd screen type

wmic bios get serialnumber

4 Likes

How to confirm PC serial number using PowerShell

Please follow the below steps, to get serial number for your PC using PowerShell command:

  1. Open Start.

  2. Search for PowerShell, right-click the top result, and select the Run as administrator option.
    Type the following command to find out the computer serial number and press Enter:

       Get-WmiObject win32_bios | select Serialnumber
    

Done.

1 Like