Here is a simple tips explains how to get details about Last Password Changed for a user account in Active Directory. This can be accomplished by various tools but now we’ll do the trick using Net User.
Syntax :
NET USER username /domain
In above command, replace the <username> with domain username and press enter. I have given example below that tried with username “francisv”
Wola! It shows more than expected…..
C:\Users>net user francisv /domain
User name francisv
Full Name Francis Villaluna
Comment
User’s comment
Country code 000 (System Default)
Account active Yes
Account expires Never
Password last set 11/3/2014 3:33:20 PM
Password expires 2/1/2015 3:33:20 PM
Password changeable 11/3/2014 3:33:20 PM
Password required Yes
User may change password Yes
Workstations allowed All
Logon script
User profile
Home directory
Last logon Never
Logon hours allowed All
Local Group Memberships
Global Group memberships *Domain Users *Non Internet Users
The command completed successfully.
Wanna do more tricks, Just Play with net user command.
NET USER username | find "Password last set"
To know more about NET USER please refer the below links
http://ss64.com/nt/net-useradmin.html