Adding Objects To The Directory : Add : Directory Services C# Examples


C# Examples » Directory Services » Add »

 

Adding Objects To The Directory









    
using  System;
using  System.DirectoryServices;

public  class  MainClass  
{
    public  static  int  Main(string[]  args)
    {
        DirectoryEntry  MyObject  =  new  DirectoryEntry();
        MyObject.Path  =  "LDAP://HMSRevenge/OU=Users,DC=Test,DC=com";

        DirectoryEntries  users  =  MyObject.Children;

        DirectoryEntry  NewUser  =  users.Add("New  User",  "user");
        NewUser.Properties["company"].Add("Your  Corporation");
        NewUser.Properties["employeeID"].Add("01");
        NewUser.Properties["userPassword"].Add("YOurPassword");

        NewUser.CommitChanges();

        return  0;
    }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Directory Services
» Add