Display password policy to enduser changing their password

Nobles, Justin 36 Reputation points
2021-04-23T08:59:00.537+00:00

What I would like to accomplish, is to display the password policy when a user wants to change their password via "STRG + ALT + ENTF" -> "Change a password" .
As of right now only the following is displayed when changing it:
90623-image.png

And if the password doesn't meet the policy the following message appears, but it doesn't give any indication about what the actual policy requires.
90625-image.png

How would it be possible to include the information of the actual policy in this process of changing the password?

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
11,072 questions
{count} vote

1 answer

Sort by: Most helpful
  1. Fan Fan 15,321 Reputation points Microsoft Vendor
    2021-04-25T23:32:55.63+00:00

    Hi,

    Based on my research, the password policy in domain can display during the change process.

    But before change the password policy, you can check the password by the PowerShell command (there will be only one password policy in the domain):
    Get-ADDefaultDomainPasswordPolicy

    If you set the FGPP for specific users, you can run command to get a fine-grained policy for a specified user
    Get-ADFineGrainedPasswordPolicy -Identity username

    Best Regards,