Finding a user's manager record in Active Directory - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T22:26:10Zhttp://stackoverflow.com/feeds/question/981621http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/981621/finding-a-users-manager-record-in-active-directory0Finding a user's manager record in Active DirectoryChadworthington2009-06-11T14:57:49Z2009-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#9817321Answer by Dan Monego for Finding a user's manager record in Active DirectoryDan Monego2009-06-11T15:15:03Z2009-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#9817881Answer by HBoss for Finding a user's manager record in Active DirectoryHBoss2009-06-11T15:24:34Z2009-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>