从c#读取ldap组成员

发布于 2024-07-11 18:23:04 字数 495 浏览 7 评论 0原文

我有这段代码可以连接到 Active Directory 并获取所有存在的组,它可以工作并返回结果中的所有组:

DirectoryEntry dirEnt = new DirectoryEntry();

using (DirectorySearcher srch = new DirectorySearcher(dirEnt, "(objectClass=Group)"))
            {
                srch.PageSize = 1000;
                SearchResultCollection results = srch.FindAll();
            }

我现在想要返回特定组的用户,即管理员,我将如何处理?

我曾尝试将 (objectClass=Group) 更改为 (objectClass=Group)(cn=admin) 但随后它没有返回任何结果。

一切顺利

I have this code to connect to Active Directory and get all the groups that exist, it works and returns all the groups in results :

DirectoryEntry dirEnt = new DirectoryEntry();

using (DirectorySearcher srch = new DirectorySearcher(dirEnt, "(objectClass=Group)"))
            {
                srch.PageSize = 1000;
                SearchResultCollection results = srch.FindAll();
            }

I now want to return users of a specific group i.e. Administrators, how would I go about this?

I had tried changing (objectClass=Group) to (objectClass=Group)(cn=admin) but then it returns no results.

All the best

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

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

发布评论

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

评论(1

天荒地未老 2024-07-18 18:23:04

以下是有关如何在 Active Directory 中进行操作的参考:

Howto:(几乎)Active Directory 中的所有内容C#

Here's a reference about how to in Active Directory:

Howto: (Almost) Everything In Active Directory via C#

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