如何使用 .net 3.5 或 4 中的 DirectoryServices.AccountManagement 在 Active Directory 中创建新 OU

发布于 2024-12-10 11:16:59 字数 378 浏览 0 评论 0原文

创造&查找用户& Active Directory 中的组我一直在使用以下代码: http://anyrest.wordpress.com/2010/06/28/活动目录-c/ 正在使用 .net 3.5 中引入的新 System.DirectoryServices.AccountManagement 命名空间...

我想添加一种使用 .net 3.5 的最新技术创建新 OU(如果该 OU 尚不存在)的方法或 4.0(并且不使用旧的 System.DirectoryServices)

知道如何做到这一点吗?

to create & find users & groups in Active Directory i've been using this code:
http://anyrest.wordpress.com/2010/06/28/active-directory-c/
that is using the new System.DirectoryServices.AccountManagement namespace that was introduced in .net 3.5...

i'd like to add a method that creates a new OU (if the OU doesnt exist already) using the newest technology with .net 3.5 or 4.0 (and not using the old System.DirectoryServices)

any idea how to do that ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

场罚期间 2024-12-17 11:16:59

根据 管理 .NET Framework 3.5 中的目录安全主体专门此处的架构 System.DirectoryServices.AccountManagement 命名空间 文章中,accountManagement 适用于用户组和计算机(安全主体)。

Active Directory Architecture

对于 organizationalUnit,您可以使用 System.DirectoryServices.ActiveDirectory 这是一个示例:

using System.DirectoryServices;

...

/* Connection to Active Directory
 */
DirectoryEntry deBase = new DirectoryEntry("LDAP://WM2008R2ENT:389/ou=Monou,dc=dom,dc=fr", "jpb", "PWD");

DirectorySearcher ouSrc = new DirectorySearcher(deBase);
ouSrc.Filter = "(OU=TheNewOU)";
ouSrc.SearchScope = SearchScope.Subtree;
SearchResult srOU = ouSrc.FindOne();
if (srOU == null)
{
  /* OU Creation
   */
  DirectoryEntry anOU = deBase.Children.Add("OU=TheNewOU", "organizationalUnit");
  anOU.Properties["description"].Value = "The description you want";
  anOU.CommitChanges();
}

不要忘记使用 using(){} 指令

According to Managing Directory Security Principals in the .NET Framework 3.5 specialy the architecture here under and System.DirectoryServices.AccountManagement Namespace article, accountManagement is for users groups and computers (security principals).

Active Directory Architecture

For organizationalUnit, you can use System.DirectoryServices.ActiveDirectory here is an example :

using System.DirectoryServices;

...

/* Connection to Active Directory
 */
DirectoryEntry deBase = new DirectoryEntry("LDAP://WM2008R2ENT:389/ou=Monou,dc=dom,dc=fr", "jpb", "PWD");

DirectorySearcher ouSrc = new DirectorySearcher(deBase);
ouSrc.Filter = "(OU=TheNewOU)";
ouSrc.SearchScope = SearchScope.Subtree;
SearchResult srOU = ouSrc.FindOne();
if (srOU == null)
{
  /* OU Creation
   */
  DirectoryEntry anOU = deBase.Children.Add("OU=TheNewOU", "organizationalUnit");
  anOU.Properties["description"].Value = "The description you want";
  anOU.CommitChanges();
}

Don't forget to use using(){} directive

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文