
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2013 06:35 PM
Where can I find the new active directory users group membership information?
Labels:
- Labels:
-
Archive
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2013 03:08 PM
Yes, the report lists your users and the user groups they belong to. Note that this report is only compatible with the 5.1 beta. You can scan users with the Domain User Scanning method found under Configuration/Scanning Setup/Scanning Methods.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2013 04:44 PM
Lansweeper wrote:
Yes, the report lists your users and the user groups they belong to. Note that this report is only compatible with the 5.1 beta. You can scan users with the Domain User Scanning method found under Configuration/Scanning Setup/Scanning Methods.
Thanks.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2013 02:46 PM
Should I expect to see which groups a user is a member of?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2013 09:23 PM
Great report, this will be useful for auditing purposes.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2013 08:57 PM
This information is listed on user webpages, which you can locate by typing a username into the search bar or using, for instance, the Active Directory Users OU widget. You can also run custom reports. A sample report can be seen below.
Select Top 1000000 tblADusers.Username,
tblADusers.Userdomain,
tblADusers.Firstname,
tblADusers.Lastname,
tblADusers.Name,
tblADusers.Displayname,
tblADusers.OU,
tblADusers.Lastchanged,
tblADGroups.Name As [Group],
tblADGroups.Description As GroupDescription
From tblADGroups
Inner Join tblADMembership On tblADMembership.ParentAdObjectID =
tblADGroups.ADObjectID
Inner Join tblADusers On tblADMembership.ChildAdObjectID =
tblADusers.ADObjectID
Order By tblADusers.Userdomain,
tblADusers.Username,
[Group]
