
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-18-2013 02:13 PM
I need to make a report containing all the user accounts with their statuses (enabled/disabled).
Can you give me a hint on how to get access to useraccountcontrol attribute?
Thanks.
Can you give me a hint on how to get access to useraccountcontrol attribute?
Thanks.
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2013 03:31 PM
You can run the report below to list AD users, but please note that the useraccountcontrol attribute and user status (enabled/disabled) are not scanned.
Select * from tblADusers
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2013 03:31 PM
You can run the report below to list AD users, but please note that the useraccountcontrol attribute and user status (enabled/disabled) are not scanned.
Select * from tblADusers

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-18-2013 09:36 PM
Thanks a lot for the answer, but no, it's not helping me.
I need the domain users exclusively. It was my mistake I didn't specified this.
I need the domain users exclusively. It was my mistake I didn't specified this.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-18-2013 06:01 PM
Hi,
This information is not scanned in Active Directory but it is for local users.
Hope the following report helps you out.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblUsers.Name,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblUsers.Disabled,
tblUsers.Status,
tblUsers.BuildInAdmin
From tblAssets
Inner Join tblUsers On tblAssets.AssetID = tblUsers.AssetID
Order By tblAssets.AssetName,
tblUsers.Name
This information is not scanned in Active Directory but it is for local users.
Hope the following report helps you out.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblUsers.Name,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblUsers.Disabled,
tblUsers.Status,
tblUsers.BuildInAdmin
From tblAssets
Inner Join tblUsers On tblAssets.AssetID = tblUsers.AssetID
Order By tblAssets.AssetName,
tblUsers.Name
