Trying to build a search that will leverage ldapsearch to pull a current list of users that are members of a specific list of groups.  For example some groups may be    CN=Schema Admins,OU=groups,DC=domain,DC=xxx  CN=Enterprise Admins,OU=group1,OU=groups,DC=domain,DC=xxx  CN=Domain Admins Admins,OU=group1,OU=groups,DC=domain,DC=xxx  This rex (?<=CN=)[^,]+ will grab the group name but having trouble pulling this all together  This needs to search any group we want to include by specific name and then table out a list of the users that are members of each group sorted by the group name    
						
					
					... View more