cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
GW99
Engaged Sweeper
If I have a folder with access restricted to users within the access group "My Folder" - can LAN sweeper report the members of that group?

Do I need to configure Domain User Scanning to scan the particular OU the group is configured within?

Is there a problem with the group having a space in the name?

thanks for any help

1 ACCEPTED SOLUTION
Hemoco
Lansweeper Alumni
You only will need to scan the user with user domain scanning and then also the groups where he belongs to will be scanned. Also if the group is located in another OU.

You can use the following report:

Select Top 1000000 tblADusers.Username,
tblADusers.Userdomain,
tblADGroups.Name,
tblADGroups.Description
From tblADGroups
Inner Join tblADMembership On tblADMembership.ParentAdObjectID =
tblADGroups.ADObjectID
Inner Join tblADusers
On tblADusers.ADObjectID = tblADMembership.ChildAdObjectID

To use the report above, do the following:
• Open the report builder under Reports/Create New Report.
• Paste the SQL code we provided at the bottom of the page.
• Left-click somewhere in the upper section of the page so the code applies.
• Give the report a Title and hit the Save & Run button to save it. Export options are listed on the left.

View solution in original post

2 REPLIES 2
GW99
Engaged Sweeper
Thanks - gave me good info I wanted
Hemoco
Lansweeper Alumni
You only will need to scan the user with user domain scanning and then also the groups where he belongs to will be scanned. Also if the group is located in another OU.

You can use the following report:

Select Top 1000000 tblADusers.Username,
tblADusers.Userdomain,
tblADGroups.Name,
tblADGroups.Description
From tblADGroups
Inner Join tblADMembership On tblADMembership.ParentAdObjectID =
tblADGroups.ADObjectID
Inner Join tblADusers
On tblADusers.ADObjectID = tblADMembership.ChildAdObjectID

To use the report above, do the following:
• Open the report builder under Reports/Create New Report.
• Paste the SQL code we provided at the bottom of the page.
• Left-click somewhere in the upper section of the page so the code applies.
• Give the report a Title and hit the Save & Run button to save it. Export options are listed on the left.