如何使用 .net 3.5 或 4 中的 DirectoryServices.AccountManagement 在 Active Directory 中创建新 OU
创造&查找用户& 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 管理 .NET Framework 3.5 中的目录安全主体专门此处的架构 System.DirectoryServices.AccountManagement 命名空间 文章中,accountManagement 适用于用户组和计算机(安全主体)。
对于
organizationalUnit
,您可以使用System.DirectoryServices.ActiveDirectory 这是一个示例:
不要忘记使用
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).
For
organizationalUnit
, you can useSystem.DirectoryServices.ActiveDirectory
here is an example :Don't forget to use
using(){}
directive