Check when password was last changed Check when password was last changed linux linux

Check when password was last changed


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"


*nix

Check out the command chage or getprpw

Windows

net user UserName has the information in it


net user UserName /DOMAIN | find /I "Password last set"

This command is useful and was able to check my last password change date and time.