
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-19-2013 07:40 PM
Hi,
I have a report which shows my Windows PC and Servers. It gives a list of the groups and shows the group members, either local or domain. It mearly does what I want ...but I also need to know whether the accounts are enabled or disabled. Want to run this to perform an uadit check ..so need to be able to see that local guest is disabled.
Can anyone help please ?
Here is my current report:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Domain,
tblUsersInGroup.Groupname As [Group],
tblUsersInGroup.Domainname As User_Domian,
tblUsersInGroup.Username As User_Name
From tblAssets
Inner Join tblUsersInGroup On tblAssets.AssetID = tblUsersInGroup.AssetID
Where tblUsersInGroup.Accounttype = 1
Order By tblAssets.AssetID,
tblUsersInGroup.Groupname
I have a report which shows my Windows PC and Servers. It gives a list of the groups and shows the group members, either local or domain. It mearly does what I want ...but I also need to know whether the accounts are enabled or disabled. Want to run this to perform an uadit check ..so need to be able to see that local guest is disabled.
Can anyone help please ?
Here is my current report:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Domain,
tblUsersInGroup.Groupname As [Group],
tblUsersInGroup.Domainname As User_Domian,
tblUsersInGroup.Username As User_Name
From tblAssets
Inner Join tblUsersInGroup On tblAssets.AssetID = tblUsersInGroup.AssetID
Where tblUsersInGroup.Accounttype = 1
Order By tblAssets.AssetID,
tblUsersInGroup.Groupname
Labels:
- Labels:
-
Archive
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-26-2013 07:38 PM
Hi ...thanks for that.
I had just about worked it out. As you say, the problem was becuase of the domain accounts. I know run it as two separate selections and then join them together.
many thanks
John
I had just about worked it out. As you say, the problem was becuase of the domain accounts. I know run it as two separate selections and then join them together.
many thanks
John

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-26-2013 07:09 PM
Create a report based on tblUsers and include tblUsers.Disabled. Enabled/disabled status is only scanned for local accounts, not for domain accounts.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-23-2013 03:30 PM
Hi, any thoughts on this ..I'm really stuck !
Any pointers would be helpful.
many thanks
John
Any pointers would be helpful.
many thanks
John
