Get User password changed time using PowerShell
filed in Active Directory, PowerShell on Feb.14, 2010
It is very simple….
Get-QADUser myuser | select PasswordLastSet
If you want to know no. of days since the user changed his password, use below command
((get-date) – (Get-QADUser pamarths).PasswordLastSet).days
Happy Learning..,
Sitaram Pamarthi




Leave a Reply