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?
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"