使用 S.DS.ActiveDirectory 命名空间枚举 OU 属性

发布于 2024-12-19 22:02:43 字数 224 浏览 1 评论 0原文

我想使用类似于 S.DS.AccountManagement 的内容检索组织单位的所有属性。

由于 S.DS.Accountmanagement 仅适用于用户和组,在这种情况下是否可以使用 S.DS.ActiveDirectory 命名空间?我还没有找到很多使用 S.DS.ActiveDirectory 的示例。

I want to retrieve all the properties of an organizational unit with something similar to S.DS.AccountManagement.

Since S.DS.Accountmanagement is only for users and groups, is it possible to use the S.DS.ActiveDirectory namespace in this case? I have not found many examples using S.DS.ActiveDirectory.

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

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

发布评论

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

评论(1

橘虞初梦 2024-12-26 22:02:43
string LdapPath = @"LDAP://" + DomainServer.HostName + "." + domainName + "/" + strOuCn;

DirectoryEntry adEntry = new DirectoryEntry();

adEntry.AuthenticationType = AuthenticationTypes.ServerBind;
adEntry.Path = LdapPath; //loads OU to adEntry

然后你可以检查你的属性,例如:

adEntry.Properties["distinguishedName"]
string LdapPath = @"LDAP://" + DomainServer.HostName + "." + domainName + "/" + strOuCn;

DirectoryEntry adEntry = new DirectoryEntry();

adEntry.AuthenticationType = AuthenticationTypes.ServerBind;
adEntry.Path = LdapPath; //loads OU to adEntry

then you can check your properties for example :

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