
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-10-2012 07:07 PM
I know I can look a the computer record and get who was last logged on but is there a way I can get all the users who have logged into that computer?
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-13-2012 04:59 PM
You can look at a computer's Lansweeper webpage under Config\User Info\Users. The report below will also work. Replace "YourComputer" with the name of the computer you would like to report on.
Select tblComputers.Computername, tblComputers.Domain, tblComputers.Computer,
tblUsers.Name
From tblComputers Inner Join
tblUsers On tblComputers.Computername = tblUsers.Computername
Where tblComputers.Computer Like '%YourComputer%'
Order By tblUsers.Name
