RTT Posted April 4, 2005 Posted April 4, 2005 i can search the active directory to find the groups and i can search users and find out of what groups he's a member. But now i have to find a group, and find out what groups he's a member of, but i don't know where to start.... anybody who has an idea? thxs in advance Quote
Mister E Posted April 5, 2005 Posted April 5, 2005 Not sure what this is in reference to, but it sounds like you have access to all of the information you need. You should be able to accomplish what you need with something like this:[b](pseudo-code)[/b] foreach (User user in AvailableUsers) foreach (Group group in AvailableGroups) if (user exists in group) { add group to list of user's groups } Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.