Active directory. groups of groups

RTT

Member
Joined
Mar 18, 2005
Messages
19
i can search the active directory to find the groups and i can search users and find out of what groups hes a member.

But now i have to find a group, and find out what groups hes a member of, but i dont know where to start....

anybody who has an idea?

thxs in advance
 
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:
Code:
[b](pseudo-code)[/b]
foreach (User user in AvailableUsers)
  foreach (Group group in AvailableGroups)
    if (user exists in group)
     {
        add group to list of users groups  
     }
 
Back
Top