Created
April 27, 2012 09:20
-
-
Save weipah/2507745 to your computer and use it in GitHub Desktop.
Find out when a user password will expire or if already expired
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-XADUserPasswordExpirationDate() { | |
Param ([Parameter(Mandatory=$false, Position=0, ValueFromPipeline=$true, HelpMessage="Identity of the Account")] | |
[Object] $accountIdentity ) | |
PROCESS { | |
If ($accountIdentity -eq $null) { | |
$computer = Get-WmiObject win32_computerSystem -ComputerName "." | |
$user = $computer.UserName.Split("\") | |
$accountIdentity = $user[$user.length-1] | |
} | |
$accountObj = Get-ADUser $accountIdentity -properties PasswordExpired, PasswordNeverExpires, PasswordLastSet | |
if ($accountObj.PasswordExpired) { | |
echo ("Password of account: " + $accountObj.Name + " already expired!") | |
} else { | |
if ($accountObj.PasswordNeverExpires) { | |
echo ("Password of account: " + $accountObj.Name + " is set to never expires!") | |
} else { | |
$passwordSetDate = $accountObj.PasswordLastSet | |
if ($passwordSetDate -eq $null) { | |
echo ("Password of account: " + $accountObj.Name + " has never been set!") | |
} else { | |
$maxPasswordAgeTimeSpan = $null | |
$dfl = (get-addomain).DomainMode | |
if ($dfl -ge 3) { | |
## Greater than Windows2008 domain functional level | |
$accountFGPP = Get-ADUserResultantPasswordPolicy $accountObj | |
if ($accountFGPP -ne $null) { | |
$maxPasswordAgeTimeSpan = $accountFGPP.MaxPasswordAge | |
} else { | |
$maxPasswordAgeTimeSpan = (Get-ADDefaultDomainPasswordPolicy).MaxPasswordAge | |
} | |
} else { | |
$maxPasswordAgeTimeSpan = (Get-ADDefaultDomainPasswordPolicy).MaxPasswordAge | |
} | |
if ($maxPasswordAgeTimeSpan -eq $null -or $maxPasswordAgeTimeSpan.TotalMilliseconds -eq 0) { | |
echo ("MaxPasswordAge is not set for the domain or is set to zero!") | |
} else { | |
echo ("Password of account: " + $accountObj.Name + " expires on: " + ($passwordSetDate + $maxPasswordAgeTimeSpan).ToString("D")) | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment