在PowerShell分别执行下面两条语句filter
Import-Module ActiveDirectoryword
Get-ADUser -filter * -SearchBase 'OU=OUNAME,DC=DOMAINNAME,DC=DOMAINLOCAL' | Set-ADAccountPassword -Reset -NewPassword (ConvertTo-SecureString -AsPlainText "NEWPASSWORD" -Force)co