PowerShell: Find Active Directory User by GUID

If you need to find an Active Directory user when all you have is the objectGUID, you can do so with PowerShell.

Get-ADUser -Identity {GUID}

Example:

Get-ADUser -Identity 3ad37200-beaa-427a-a01a-a107bef2ca42

Leave a Comment