Get-CimInstance -ClassName Win32_BIOS | Select-Object -Property SerialNumber

Ntando'enhle Pearl 0 Reputation points
2026-07-14T00:41:16.3166667+00:00

TRYING Find SERIAL NUMBER

LOST LAPTOP AND NEED TO TRACK IT

Windows for home | Other | Recovery and backup
0 comments No comments

2 answers

Sort by: Most helpful
  1. Thomas4-N 21,145 Reputation points Microsoft External Staff Moderator
    2026-07-15T07:13:15.41+00:00

    Hello Ntando'enhle Pearl,

    Sorry to hear about the lost laptop. Unfortunately, serial number on its own can't locate or track a device, and that PowerShell command only works when you're signed in on the machine itself, so it won't help now that it's gone.

    The only real tracking option is Find My Device, and only if it was turned on before the laptop went missing:

    • Go to the Microsoft devices page: https://account.microsoft.com/devices
    • Sign in with the same Microsoft account that was on the laptop
    • Pick the device and choose Find My Device to see its last known location (it has to be powered on and online to show up)

    If the laptop was already removed from your device list, or Find My Device was never enabled, then unfortunately these tools won't be able to locate it.

    Was this answer helpful?

    0 comments No comments

  2. AI answer

    2026-07-14T00:41:34.2366667+00:00

    If the laptop is already lost, the serial number command only helps if the device was previously accessible in Windows PowerShell.

    To get a Windows device serial number locally, use:

    Get-CimInstance -ClassName Win32_BIOS |
        Select-Object -ExpandProperty SerialNumber
    

    A shorter form is:

    (Get-CimInstance -ClassName Win32_BIOS -Property SerialNumber).SerialNumber
    

    For a lost or stolen laptop, tracking only works if Find my device was turned on before it was lost, and the device is powered on and connected to the internet. If those conditions were met, sign in to the Microsoft devices page and use Find My Device for that device.

    If the device was removed from the devices list, or if Find my device was not enabled beforehand, the location feature will not help recover it.

    For Surface devices, the serial number can also be found in the Surface app under Device information if the device is still available.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.