I have a situation whereby Active Directory groups are prefixed with a unique code. For instance
I'm currently using LDAP to get all groups but I would like to restrict this to only those prefixed with the id.
Effectively get groups beginning with 12345.
How can I achieve this with LDAP?
Using LDAP a filter like:
&((ObjectClass=Group)(cn=12345*))
Will retrieve groups beginning with 12345. -jim