This small piece of code helps you to know when a active directory user has changed his password last time. Use your own inventions to make the output appear the way you want.
$user = “user1”
$searcher=New-Object DirectoryServices.DirectorySearcher
$searcher.Filter=”(&(samaccountname=$user))”
$results=$searcher.findone()
$changedtime = [datetime]::fromfiletime($results.properties.pwdlastset[0])
write-host -b blue -f red The user, $user has changed password last time at $changedtime
It will be more easy if you have Quest PowerShell Cmdlets for active roles installed in your PC. Download it from Quest site and install on your machine and execute the below oneliner in Quest powershell window.
Get-QADUser user1 | ft displayname, PasswordLastSet
Happy Learning..,
Sitaram Pamarthi
Comments on this entry are closed.
Thank you so much for providing this. It worked flawssly the first time, My boss could not logging to the computer and i had to find out whether the password had been changed or not recently, so i was short on time. Best regards
Good to hear that it helped you.
Awesome. Works perfect from my XP workstation.
Thanks for sharing the feedback
Excellent article. Works at treat.
Thankyou!
thanks so much works great
Glad to hear that. Thanks…