本文介绍了查询以列出特定组的所有用户的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用搜索过滤器显示特定组的用户?
How can I use a a search filter to display users of a specific group?
我尝试了以下操作:
(&
(objectCategory=user)
(memberOf=MyCustomGroup)
)
和这个:
(&
(objectCategory=user)
(memberOf=cn=SingleSignOn,ou=Groups,dc=tis,dc=eg,dc=ddd,DC=com)
)
但都不显示特定组的用户.
but neither display users of a specific group.
推荐答案
memberOf(在AD中)存储为专有名称列表.您的过滤器必须类似:
memberOf (in AD) is stored as a list of distinguishedNames. Your filter needs to be something like:
(&(objectCategory=user)(memberOf=cn=MyCustomGroup,ou=ouOfGroup,dc=subdomain,dc=domain,dc=com))
如果您还没有专有名称,可以使用以下命令进行搜索:
If you don't yet have the distinguished name, you can search for it with:
(&(objectCategory=group)(cn=myCustomGroup))
并返回属性distinguishedName
.情况可能很重要.
and return the attribute distinguishedName
. Case may matter.
这篇关于查询以列出特定组的所有用户的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!