I don’t remember this being covered in the lecture, but in Lab 16 I couldn’t find the password expiry time because the account password was set to not expire. I didn’t notice it until I was unlocking the account after testing locking it. This might be something to mention in the lectures leading up to this lab.
16: Securing Your Domain with Group Policy (labondemand.com)
Also, the PowerShell command in the Fine Grained password policy resources has a couple typos in it
Get-ADUser -filter {GivenName -eq Paul} –Properties “DisplayName”,“msDS-UserPasswordExpiryTimeComputed” | Select-Object -Property “Displayname”,@{Name=“ExpiryDate”;Expression={[datetime]::FromFileTime($_.“msDS-UserPasswordExpiryTimeComputed”)}}
Server Academy