How To | Get Windows Id

Settings → Accounts → Access Work or School → Click on connected account → Info → Device ID

wmic csproduct get uuid HKLM\SOFTWARE\Microsoft\Cryptography → MachineGuid (similar but not identical to UUID) 3. Find Windows SID (User or Machine) Every user account and Windows installation has a unique Security Identifier.

wmic path softwarelicensingservice get ProductID how to get windows id

Here’s a clean, educational write-up covering the legitimate ways to find a Windows and System IDs (like UUID, Device ID, or SID).

Get-WmiObject -Class Win32_ComputerSystemProduct | Select-Object -ExpandProperty UUID Settings → Accounts → Access Work or School

wmic useraccount get name,sid Used in Microsoft Entra ID (Azure AD) or Intune management.

Get-WmiObject -Class SoftwareLicensingService | Select-Object ProductID Used by IT departments to uniquely identify a machine. how to get windows id

Get-WmiObject -Class Win32_UserAccount | Where-Object $_.Name -eq "Administrator" | Select-Object SID