cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Merick1983
Engaged Sweeper
Is it possible to obtain a list of all Users that have logged on to a particular PC and also when they logged on to it? (not just the latest logon but all logons).

I know i can do it the other way, get all PC's a particular user has logged on to but i need to know who was logged on to a PC at a certain time.

Thanks in anticipation.
6 REPLIES 6
Merick1983
Engaged Sweeper
Well, I managed to do it but ive realised it's not what I wanted.. I need a list of logons on the Computer details page (Actoin Screen), athough having all logons by user will prove useful too.

I think I'll need to pop it on the wishlist for a later version.



Cheers,
Merick1983
Engaged Sweeper
No worries, how easy would it be for me to change the User Details page so that it shows all logons for that user rather than just the latest?
Hemoco
Lansweeper Alumni
Merick1983 wrote:
No worries, how easy would it be for me to change the User Details page so that it shows all logons for that user rather than just the latest?

You're free to give it a try but we don't support it.
Merick1983
Engaged Sweeper
Thanks for that, exactly what I was looking for.

I do have one slight problem though, without specifying a username in the criteria it hangs and crashes internet explorer (im guessing it's trying to provide far too much info).

Is there any way of making a report prompt for certain criteria so that whenever we run it, we can enter a username to search for?
Hemoco
Lansweeper Alumni
Merick1983 wrote:

Is there any way of making a report prompt for certain criteria so that whenever we run it, we can enter a username to search for?

No, this is not possible.
Hemoco
Lansweeper Alumni
try this:

Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblCPlogoninfo.Username, tblCPlogoninfo.Domain,
tblCPlogoninfo.logontime
From tblComputers Inner Join
tblCPlogoninfo On tblComputers.Computername = tblCPlogoninfo.Computername
Order By tblComputers.ComputerUnique, tblCPlogoninfo.logontime Desc