Click here to Skip to main content
Licence CPOL
First Posted 10 Nov 2008
Views 17,699
Bookmarked 16 times

Update Manager Name in Active Directory Using C#

By | 10 Nov 2008 | Article
How to update manager name in Active Directory using C#.

Introduction

I was trying to update the manager name in Active Directory, but I faced some problems while doing that. I searched the Internet, but didn't find anything useful about this topic.

Background

Most user fields in Active Directory can be inserted as normal text, but Manager has a distinguished name syntax attribute (2.5.5.1), so you have to supply a valid DN for it, not just any string.

Using the code

First, you have to use the System.DirectoryServices and System.DirectoryServices.ActiveDirectory namespaces.

using System;
using System.DirectoryServices;
using System.DirectoryServices.ActiveDirectory;

This code does the actual work:

string EmployeeSAM = "tamer.tharwat";

//you have to use the current user account or any domain admin user account
DirectoryEntry objDirEnt = new DirectoryEntry("LDAP://AlfanarCo", 
                           @"alfanar.com\Tamer.Tharwat", "****");

//searcher object to select the current user from the Active directory
DirectorySearcher mySearcher = new DirectorySearcher(objDirEnt);

mySearcher.PageSize = 10000;
//you can increase it according to your active directory database size

mySearcher.Filter = "(&(objectCategory=user)(samAccountName="+EmployeeSAM+"))";
//you can add any filter you want 

mySearcher.PropertiesToLoad.Add("samAccountName");
mySearcher.PropertiesToLoad.Add("Manager");
mySearcher.SearchScope = SearchScope.Subtree;

SearchResult result;
SearchResultCollection resultCol = mySearcher.FindAll();
//you can use the colliction for bulk update

if (resultCol != null)
{

for (int counter = 0; counter < resultCol.Count; counter++)
{
    result = resultCol[counter];

    DirectoryEntry Userde = result.GetDirectoryEntry();
    //the directory entry for the user 

    if (result.Properties.Contains("samaccountname"))
    //check if it is a valid entry
    {

        string ManagerSAM = "aymanb";//manager Account 
        DirectorySearcher managerSearcher = new DirectorySearcher(objDirEnt);
        managerSearcher.PageSize = 10;
        managerSearcher.Filter = "(&(objectCategory=user)(samAccountName=" + 
                                 ManagerSAM + "))";
        managerSearcher.PropertiesToLoad.Add("DistinguishedName");
        managerSearcher.SearchScope = SearchScope.Subtree;

        SearchResult managerResult;
        SearchResultCollection managerResultCol = managerSearcher.FindAll();


        if (managerResultCol != null)
        {
            managerResult = managerResultCol[0];
            string managerName = 
              (string)managerResult.Properties["DistinguishedName"][0];

            //here update the manager name 
            //in the user directtory entry "Userde"
            (Userde.Properties["Manager"]).Value = managerName;
            Userde.CommitChanges();
        }
    }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Tamer Yousry Tharwat

Software Developer (Senior)
Alfanar IT
Egypt Egypt

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionTnx Pinmembersepel22:57 24 Nov '11  
GeneralGood Job thank u ,here is the VB Code PinmemberSamsooom11:35 29 Mar '10  
GeneralRe: Good Job thank u ,here is the VB Code Pinmembergarry.aguirre15:34 17 Apr '12  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 11 Nov 2008
Article Copyright 2008 by Tamer Yousry Tharwat
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid