where can I find last long in and prior log in for windows 7 guest account?

Artista

Senior member
Jan 7, 2011
768
1
0
I want to be able to see when my computer was accessed in the "guest" account. There seems to be a lot of conflicting and very general information on the net. I want to see when the last time and previous that the guest account was accessed. Plus anything else on guest account. I looked in security log but it looked like it was giving times when a service etc was logged.

Thank you
 
Last edited:

Bubbaleone

Golden Member
Nov 20, 2011
1,803
4
76
Open an elevated command prompt and use the ‘net user’ command to find the last login time of any user.

net user <username> | findstr /B /C:"Last logon"

Example:

To find the last login time of the computer Guest account

net user guest | findstr /B /C:"Last logon"
 

Artista

Senior member
Jan 7, 2011
768
1
0
How about a log of when the guest account was logged onto? Like the last few times or a log of all up to a point (size limit) of a log? Sorry I should have been more specific. Thank you again