1

I am trying to figure the ADSI query to get the list of users added to the group Remote Desktop Users in an AD domain.

I guess I need to set the appropriate filter to get the result.

I tried something like

(&(objectClass=Remote Desktop Users)(objectCategory=person)

but it doesn't work.

Thanks Sunil

4

1 回答 1

0

组成员身份由memberOf属性-not 确定objectClass

你应该尝试这样的事情:

(&(memberOf="cn=Remote Desktop Users")(objectCategory=person))
于 2013-02-19T12:20:29.840 回答