C# Create OU in Active Directory - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T14:33:54Zhttp://stackoverflow.com/feeds/question/400691http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/400691/c-create-ou-in-active-directory1C# Create OU in Active DirectoryJames May2008-12-30T16:10:21Z2009-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#4007871Answer by chris for C# Create OU in Active Directorychris2008-12-30T16:41:54Z2008-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#4008761Answer by Steve Evans for C# Create OU in Active DirectorySteve Evans2008-12-30T17:12:12Z2008-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#4009420Answer by James May for C# Create OU in Active DirectoryJames May2008-12-30T17:35:57Z2008-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>