Active Directory Password Expiration
Password expiration is a subject that troubles most helpdesk departments since users are getting locked out if they do not update their password. Today we are going to use Powershell and the ActiveDirectory module in order to create a report that will contain the information related to the passwords.
The Active Directory attributes that are going to get our attention are:
Another use for this report would be to notify the users that their password is going to expire a few days in advance.
The Active Directory attributes that are going to get our attention are:
- PasswordNeverExpires, to check if the password is set to never expire
- PasswordLastSet, to get the date the password was last set
- msDS-UserPasswordExpiryTimeComputed, to get when the password is going to expire
Get-ADUser -Filter * -Properties SamAccountName, ` Mail, ` PasswordNeverExpires, ` PasswordLastSet, ` msDS-UserPasswordExpiryTimeComputed | Select-Object -Property SamAccountName, ` Mail, ` PasswordNeverExpires, ` PasswordLastSet, ` @{Name=“ExpirationDate”;Expression={[datetime]::FromFileTime($_.“msDS-UserPasswordExpiryTimeComputed”)}}
Another use for this report would be to notify the users that their password is going to expire a few days in advance.