C# Create OU in Active Directory - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T14:33:54Z http://stackoverflow.com/feeds/question/400691 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/400691/c-create-ou-in-active-directory 1 C# Create OU in Active Directory James May 2008-12-30T16:10:21Z 2009-03-10T02:38:38Z <p>I'm struggling to create an OU for Active Directory using the code below.</p> <p>strPath = "OU=TestOU,DC=Internal,DC=Com"</p> <pre><code>DirectoryEntry objOU; objOU = ADentry.Children.Add(strPath, "OrganizationalUnit"); objOU.CommitChanges(); </code></pre> <p>The problem is strPath contains the full path 'OU=TestOU,DC=Internal,DC=net' so using .Children.Add is making the ldap path 'OU=TestOU,DC=Internal,DC=net,DC=Internal,DC=net' which results in an error as the domain obviously doesn't exist. </p> <p>My question is can I create an OU using <code>strPath</code> without <code>.Children.Add</code>? </p> <p>I'm not familiar with AD and this is something I inherited from the guy before me.</p> http://stackoverflow.com/questions/400691/c-create-ou-in-active-directory/400787#400787 1 Answer by chris for C# Create OU in Active Directory chris 2008-12-30T16:41:54Z 2008-12-30T16:41:54Z <p>try this using System; using System.DirectoryServices;</p> <p>namespace ADAM_Examples { class CreateOU { /// /// Create AD LDS Organizational Unit. /// [STAThread] static void Main() { DirectoryEntry objADAM; // Binding object. DirectoryEntry objOU; // Organizational unit. string strDescription; // Description of OU. string strOU; // Organiztional unit. string strPath; // Binding path.</p> <pre><code> // Construct the binding string. strPath = "LDAP://localhost:389/O=Fabrikam,C=US"; Console.WriteLine("Bind to: {0}", strPath); // Get AD LDS object. try { objADAM = new DirectoryEntry(strPath); objADAM.RefreshCache(); } catch (Exception e) { Console.WriteLine("Error: Bind failed."); Console.WriteLine(" {0}", e.Message); return; } // Specify Organizational Unit. strOU = "OU=TestOU"; strDescription = "AD LDS Test Organizational Unit"; Console.WriteLine("Create: {0}", strOU); // Create Organizational Unit. try { objOU = objADAM.Children.Add(strOU, "OrganizationalUnit"); objOU.Properties["description"].Add(strDescription); objOU.CommitChanges(); } catch (Exception e) { Console.WriteLine("Error: Create failed."); Console.WriteLine(" {0}", e.Message); return; } // Output Organizational Unit attributes. Console.WriteLine("Success: Create succeeded."); Console.WriteLine("Name: {0}", objOU.Name); Console.WriteLine(" {0}", objOU.Properties["description"].Value); return; } } </code></pre> <p>}</p> http://stackoverflow.com/questions/400691/c-create-ou-in-active-directory/400876#400876 1 Answer by Steve Evans for C# Create OU in Active Directory Steve Evans 2008-12-30T17:12:12Z 2008-12-30T17:12:12Z <p>The only way to create an object with System.DirectoryServices is to create a DirectoryEntry object to the parent and use DirectoryEntry.Children.Add.</p> <p>I think your best move at this point is to use the path you have and extract the part you need ("OU=something").</p> http://stackoverflow.com/questions/400691/c-create-ou-in-active-directory/400942#400942 0 Answer by James May for C# Create OU in Active Directory James May 2008-12-30T17:35:57Z 2008-12-30T17:35:57Z <blockquote> <blockquote> <p>I think your best move at this point is to use the path you have and extract the part you need ("OU=something").</p> </blockquote> </blockquote> <p>Thanks Steve</p>