Sunday, November 13, 2011

Reset BPOS User Password via Powershell

You must first install Microsoft Online Services Migration Tools.

ps> $cred = get-credentials

(type in email address + password of BPOS Admin Credentials)


  • Can specify not to change on next logon
  • Can set password to one previously used.
  • Complexity requirements enforced

ps> Set-MSOnlineUserPassword -Credential $cred -Identity user@domain.com -Password P@ssw0rd1 -ChangePasswordOnNextLogon false