Get Active Directory Password Change Dates – 60 second solutions

Here’s another very useful script which simply lists all of your users in Active Directory, sorted by when their passwords were last changed. Great for checking if your password policies are actually being enforced… Import-Module ActiveDirectory #This may be done automatically when issuing the next line Get-ADUser –Filter * -Properties PasswordLastSet, PasswordNeverExpires | Sort PasswordLastSet […]