Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

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

Posted
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  
    }

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...