cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Netmedic
Engaged Sweeper
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?
1 REPLY 1
Hemoco
Lansweeper Alumni
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