如何检查某些用户上次更改密码的时间?我想在 Windows 和 Linux 上都这样做,你能指导我一点我该怎么做吗?
问问题
95023 次
3 回答
36
在 Linux 中:
chage -l {username}
在 Windows 中:
net user {username} | find /I "Password last set"
在 Windows 中(域的用户部分):
net user {username} /DOMAIN | find /I "Password last set"
于 2012-08-02T15:49:35.623 回答
-2
网络用户用户名 /DOMAIN | 查找 /I "密码最后设置"
此命令很有用,并且能够检查我上次更改密码的日期和时间。
于 2016-10-04T06:52:47.800 回答