Skip to content

Instantly share code, notes, and snippets.

@Nillth
Created May 18, 2023 02:03
Show Gist options
  • Save Nillth/930e0dd13c5c70d522e9ba15b9a2ad2f to your computer and use it in GitHub Desktop.
Save Nillth/930e0dd13c5c70d522e9ba15b9a2ad2f to your computer and use it in GitHub Desktop.
Qlik Sense UDC Active Directory LDAP Filter
(&(objectCategory=Person)
(|
(memberOf=CN=GroupName,OU=Department,OU=Security_Groups,DC=domain,DC=com)
(memberOf:1.2.840.113556.1.4.1941:=CN=GroupName,OU=Department,OU=Security_Groups,DC=domain,DC=com)
)
(!(userAccountControl:1.2.840.113556.1.4.803:=2))
)
@Nillth
Copy link
Author

Nillth commented May 18, 2023

Recursive Search of Group & Child Groups
(memberOf:1.2.840.113556.1.4.1941:=CN=GroupName,OU=Department,OU=Security_Groups,DC=domain,DC=com)

Members of Group Only
(memberOf=CN=GroupName,OU=Department,OU=Security_Groups,DC=domain,DC=com)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment