Is it possible to search active directory for a group like this: - Give me all groups that contain the name sample?
In SQL I would write
SELECT * FROM GROUP WHERE NAME LIKE %sample%
I found on msdn some hints for expressions =, <= but not for a like. http://msdn.microsoft.com/en-us/library/system.directoryservices.directorysearcher.filter.aspx
Thanks for any hints.