Adding new user To The Directory : User Add : Directory Services C# Examples


C# Examples » Directory Services » User Add »

 

Adding new user 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("Name",  "user");
        NewUser.Properties["company"].Add("Corporation");
        NewUser.Properties["employeeID"].Add("1001");
        NewUser.Properties["userPassword"].Add("Password");

        NewUser.CommitChanges();

        return  0;
    }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Directory Services
» User Add