Forum Discussion

ripclaw's avatar
ripclaw
Copper Contributor
Aug 19, 2021
Solved

Password policy verification /verification politique de mots de passe

Hello, I would like to see if my AD users respect the password policy. I did several searches on the internet and I came across this command line: Get-ADUserResultantPasswordPolicy but I would li...
  • pvanberlo's avatar
    Aug 19, 2021
    You can pipe PowerShell cmdlets so this is executed for all or a subset of users in AD:

    Get-ADUser -Filter * | Get-ADUserResultantPasswordPolicy

    Depending on how many users, this might take some time to finish running.