Hi,
i'm trying to move an AD User from a OU to another OU in C#
This doesn't work...
public void AddToOU(string User, string OU){
DirectoryEntry ent = new DirectoryEntry("LDAP://DC=" + DC); DirectoryEntry ou = ent.Children.Find("OU=" + OU); DirectoryEntry group = ou.Children..Add("CN=" + User, "user");group.CommitChanges();
}
Thank's
Replies
Know the answer? Post it — somebody with the same question will find it here.