Account Lockouts: Self-Service & IT Admin Procedures

This document explains how end users can unlock/reset their accounts and how IT admins can assist using Microsoft 365 Admin Center, Entra ID (Azure AD), and on-prem Active Directory.

1) Prerequisites & Design

2) End-User Self-Service (SSPR)

2.1 Online Portal (recommended)

  1. Go to passwordreset.microsoftonline.com.
  2. Enter your work/school email and verify via SMS, Email, or Authenticator.
  3. Set a new password that meets policy (length + uppercase + lowercase + number + symbol).
  4. Sign in at portal.office.com.

2.2 Windows Login Screen

  1. At the Windows sign-in screen, press Ctrl+Alt+Delete (or click Reset password if shown).
  2. Follow the prompts to verify identity and set a new password.

2.3 Change Password While Logged In

  1. Press Ctrl+Alt+DeleteChange a password.
  2. Enter current password, then a new compliant password.
Tip: Keep your security info updated at mysignins.microsoft.com/security-info. If you don’t see Reset password on the login screen, contact IT.

3) Enablement for IT (SSPR & Writeback)

3.1 Turn On SSPR (Entra ID)

  1. Azure Portal → Entra ID (Azure AD)Password reset.
  2. Properties: Enable for Selected or All users.
  3. Choose required authentication methods (Phone, Email, Authenticator).
  4. Enable notifications for users and admins.

3.2 Password Writeback (on-prem AD)

  1. On Azure AD Connect server → Customize synchronization options.
  2. Under Optional Features, enable Password writeback.
  3. Verify Enabled in Entra ID → Password reset → On-premises integration.
Note: If Password Writeback is enabled, SSPR resets flow back to on-prem AD for synced users.

4) IT Admin Runbook

4.1 Microsoft 365 Admin Center

  1. Go to admin.microsoft.comUsers > Active users.
  2. Select the user → Reset password.
  3. Use Block/Unblock sign-in if required.

4.2 Entra ID

  1. Azure Portal → Entra IDUsers.
  2. Authentication methodsRequire re-register or remove existing methods.

4.3 On-Prem AD (ADUC GUI)

  1. Open Active Directory Users and Computers.
  2. Right-click user → Reset Password or Unlock.

4.4 PowerShell Snippets

# Cloud (MSOnline)
Connect-MsolService
Set-MsolUserPassword -UserPrincipalName user@domain.com -NewPassword 'TempP@ssw0rd!' -ForceChangePassword $true

# On-prem Active Directory (RSAT)
Unlock-ADAccount -Identity "username"
Set-ADAccountPassword -Identity "username" -Reset -NewPassword (ConvertTo-SecureString "NewP@ssw0rd1" -AsPlainText -Force)
Set-ADUser -Identity "username" -ChangePasswordAtLogon $true

5) Testing Checklist

6) Troubleshooting

Back to Account Guides