Home » Questions » Computers [ Ask a new question ]

From the Active Directory Snap-In, how can I find the GUID for a user?

From the Active Directory Snap-In, how can I find the GUID for a user?

How ca I view the GUID associated with an Active Directory user under windows 7?

Asked by: Guest | Views: 331
Total answers/comments: 3
Guest [Entry]

PsGetSid may do it.
Guest [Entry]

"Open powershell.
Type: get-aduser -identity <insert username here>
The ObjectGUID will appear in the output"
Guest [Entry]

"In PowerShell type the following commands:

Get-ADUser -Filter * -Properties SID | where {$_.sid -eq 'number here'}

Get-ADComputer -Filter * -Properties SID | where {$_.sid -eq 'number here'}"