
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-29-2012 05:01 PM
How do i add Computer Name to this report? Or the ability to Drill down to a list of the duplicates or the associated computers.
I see that you can already create a report to find duplicate sids.
The -500 account at the end means that this is the local administrator account.
Code:
Select Top 100 Percent tblUsers.SID, Count(tblUsers.UserID) As Total
From dbo.tblComputers Inner Join
tblUsers On dbo.tblComputers.Computername = tblUsers.Computername
Group By tblUsers.SID
Having tblUsers.SID Like '%-500'
You can create reports based on this.
I see that you can already create a report to find duplicate sids.
The -500 account at the end means that this is the local administrator account.
Code:
Select Top 100 Percent tblUsers.SID, Count(tblUsers.UserID) As Total
From dbo.tblComputers Inner Join
tblUsers On dbo.tblComputers.Computername = tblUsers.Computername
Group By tblUsers.SID
Having tblUsers.SID Like '%-500'
You can create reports based on this.
Labels:
- Labels:
-
Archive
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-29-2012 05:26 PM
that is what i was looking for. just was bringing up an old search that report is perfect thanks as always
To add to this the two computers i am looking for are not showing in this list.
Last edit 🙂 nevermind not lansweepers fault got what i needed.
To add to this the two computers i am looking for are not showing in this list.
Last edit 🙂 nevermind not lansweepers fault got what i needed.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-29-2012 05:18 PM
Could you clarify what you would like to do. The built-in report "Computer: Duplicate SID" should already include the information you need. (It lists computer names as well.)
