Forum Discussion
ripclaw
Aug 19, 2021Copper Contributor
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...
- Aug 19, 2021You 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.