Finding a user's manager record in Active Directory - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:26:10Z http://stackoverflow.com/feeds/question/981621 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/981621/finding-a-users-manager-record-in-active-directory 0 Finding a user's manager record in Active Directory Chadworthington 2009-06-11T14:57:49Z 2009-06-11T15:24:34Z <p>Using Active Directory, am trying to find the SamAccountName and email of the user’s manager.</p> <p>I find the logged on user in the AD by search where sAMAccountName = Domain\Account. I then retrieve the manager property, which looks like this, for example:</p> <p>"CN=Doe\, Jane E.,OU=Employees,OU=Users,OU=Detroit,OU=United States,DC=na,DC=gmc,DC=gmc,DC=com"</p> <p>How can I use this presumed key to find the user record for this person? What field would I match on?</p> http://stackoverflow.com/questions/981621/finding-a-users-manager-record-in-active-directory/981732#981732 1 Answer by Dan Monego for Finding a user's manager record in Active Directory Dan Monego 2009-06-11T15:15:03Z 2009-06-11T15:15:03Z <p>The entry for the manager is the manager's Binding String. You can feed it back into a request to active directory by binding it to an object that will return the manager's information.</p> http://stackoverflow.com/questions/981621/finding-a-users-manager-record-in-active-directory/981788#981788 1 Answer by HBoss for Finding a user's manager record in Active Directory HBoss 2009-06-11T15:24:34Z 2009-06-11T15:24:34Z <p>If I remember correctly, that is their Distinguished Name, which means you can use it as the direct reference to their profile</p> <p><strong>LDAP://CN=Doe, Jane E.,OU=Employees,OU=Users,OU=Detroit,OU=United States,DC=na,DC=gmc,DC=gmc,DC=com</strong></p> <p>I also think it will return that name if the profile exists. If it has been deleted then I believe it runs a GUID of some sort (based on memory - this might be incorrect)</p>