我将如何编写一个 LDAP 过滤器来搜索给定域中的用户对象?基本上我正在尝试从给定域中获取所有 Lync 用户
我试过这个:
get-csuser -LdapFilter "(&(objectCategory=person)(objectClass=user)(dc=mytestlab,dc=com))"
但这没有给我任何结果。
基本上,域是 mytestlab.com,我想做的就是从这个特定的域中获取用户。这可能吗?
谢谢
我将如何编写一个 LDAP 过滤器来搜索给定域中的用户对象?基本上我正在尝试从给定域中获取所有 Lync 用户
我试过这个:
get-csuser -LdapFilter "(&(objectCategory=person)(objectClass=user)(dc=mytestlab,dc=com))"
但这没有给我任何结果。
基本上,域是 mytestlab.com,我想做的就是从这个特定的域中获取用户。这可能吗?
谢谢
I think the following filter should work:
(&(objectCategory=person)(objectClass=user)(dc:dn:=mytestlab)(dc:dn:=com))
The filter above is called an extensible match search because it specifies an attribute name: dc and the DN’s attributes should be considered as part of the entry.