Check when password was last changed

僤鯓⒐⒋嵵緔 提交于 2019-12-02 20:47:23

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

Erik Gump

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!