Show Windows 7 logon time?

Solution 1:

Use the following command in a Command Prompt:

net user [username]

It will be next to Last Logon.

EDIT
If your screen becomes locked and you use the method above it will display the last time the screen was unlocked. You will have to use this command below to get the initial login time:

quser

Solution 2:

You can also use

quser

to see the login time.

Solution 3:

Go to the command prompt and type:

net statistics srv

Solution 4:

I had the same issue for a network PC and this gave me results I was looking for:

wmic netlogin get name, fullname, lastlogon

...this will provide info for all users that have logged in.