Difference between revisions of "How to get the AD object security ID (SID)"

From Tech-Wiki
Jump to: navigation, search
 
Line 1: Line 1:
 
[[Category:Microsoft]]
 
[[Category:Microsoft]]
 +
'''[[Microsoft#Active Directory|Back to Active Directory]]'''
 +
  
 
How to obtain the Active Directory Security ID (SID) for an object.
 
How to obtain the Active Directory Security ID (SID) for an object.

Latest revision as of 10:12, 24 August 2016

Back to Active Directory


How to obtain the Active Directory Security ID (SID) for an object.

First obtain the distinguished name (DN) of the object. In this example the 'dsquery' utility has been used. From the Command Prompt.

dsquery user -name "Joe Bloggs"

Example Output:

"CN=Joe Bloggs,OU=Users,DC=contoso,DC=com"


Next use the 'dsget' utility, along with the DN to obtain the SID:

dsget user "CN=Joe Bloggs,OU=Users,DC=Contoso,DC=com" -sid

Example Output:

 sid
 S-1-5-21-2560XXXX-XXXXX-XXXXX-19440
 dsget succeeded