Skip to content

PowerShell Password Reset#

Reset password for users in a certain field and force password reset#

get-aduser -filter "department -eq 'marketing' -AND enabled -eq 'True'" | Set-ADAccountPassword -NewPassword $newpwd -Reset -PassThru | Set-ADuser -ChangePasswordAtLogon $True

Force password reset for users in a certain field#

get-aduser -filter "department -eq 'marketing' -AND enabled -eq 'True'" | Set-ADuser -ChangePasswordAtLogon $True

Sources#

Note Created: 2026-05-07