Check when password was last changed

KlimczakM picture KlimczakM · Aug 2, 2012 · Viewed 86.6k times · Source

How do I check when the password was last changed for some user? I would like to do it both on Windows and Linux, can you guide me a little how can I do that?

Answer

Adi picture Adi · Aug 2, 2012

In Linux:

chage -l {username}

In Windows:

net user {username} | find /I "Password last set"

In Windows (user part of a domain):

net user {username} /DOMAIN | find /I "Password last set"