Change AD user password using Pwershell

Set-ADAccountPassword -Identity username -OldPassword (ConvertTo-SecureString -AsPlainText "oldpwd" -Force) -NewPassword (ConvertTo-SecureString -AsPlainText "N3Wp4$$w0rD" -Force)