Entra ID SSPR Registered Methods Only November 2026: What's Changing
Beginning November 9, 2026, Microsoft Entra ID SSPR will accept registered methods only for password-reset verification — the exact change search interest already labels as Entra ID SSPR registered methods only November 2026. Directory-sourced contact information — the mobilePhone, businessPhone, and otherMails attributes, populated via Microsoft Entra Connect sync or set directly by an admin — will stop counting as valid SSPR verification unless a user has explicitly registered that same phone number or email address as an authentication method.
This is a quiet but consequential tightening. Many tenants have relied on synced or admin-populated contact attributes as an implicit SSPR fallback since these values let a user reset a forgotten password even if they never went through Microsoft's authentication-method registration flow — a behavior Microsoft's own documentation on prepopulating SSPR contact data confirms today. According to Microsoft's rollout notice (Message Center post MC1325414), roughly 86% of SSPR verifications already use registered methods today — which also means a meaningful minority of resets currently succeed only because of this soon-to-be-removed fallback.
Microsoft is rolling the change out in two dated steps, confirmed in the Microsoft Learn article above and in Message Center post MC1325414:
- October 5, 2026 — a built-in registration campaign starts nudging signed-in users and admins who don't yet have enough registered methods to complete SSPR under their policy. No admin action is required to turn this on.
- November 9, 2026 — enforcement: SSPR verification accepts only explicitly registered methods. Unregistered directory-sourced phone numbers and email addresses stop working, full stop.
⚠️ Warning: This is Microsoft's second attempt at this timeline. Earlier Message Center guidance (referenced in secondary coverage as recently as June 2026) had pointed to a July 6 / September 7, 2026 rollout. Microsoft pushed both dates back — the Learn article was last revised August 4, 2026 to the October 5 / November 9 dates above. Don't plan against a date you saw before August 2026 without re-checking the live documentation.
The Microsoft Entra blog frames this as closing a long-standing gap: SSPR was never meant to trust attributes nobody verified ownership of. A phone number synced from an on-prem telephoneNumber/mobile field, or typed into a user's profile by an admin during onboarding, may be stale, reassigned, or simply wrong — and until now it could still reset that user's password.
This lands in the middle of a broader wave of Entra authentication changes this year, alongside the SMS/voice MFA retirement in favor of passkeys and the Custom Controls retirement in Conditional Access — none of which are optional to ignore if your tenant still leans on legacy authentication fallbacks.
Detection
Because both registered and unregistered methods work identically for SSPR today, there's no sign-in log event that flags "this reset used an unregistered method" — the gap only becomes visible if you inventory registration coverage directly, ahead of the November 9 cutover.
| Signal | Where to look | What it tells you |
|---|---|---|
SSPR compatible: Not compatible filter | Entra admin center → Authentication methods → Monitoring → User registration details | Users who currently lack a registered method satisfying your SSPR policy |
isSsprRegistered eq false | Microsoft Graph userRegistrationDetails report | Users enabled for SSPR who haven't completed registration |
isSsprCapable eq false and isSsprEnabled eq true | Same Graph report, combined filter | Users who will be locked out of SSPR the moment enforcement lands |
mobilePhone / businessPhones / otherMails populated, but methodsRegistered empty | Cross-reference the registration-details report against user profile attributes | Accounts relying on the directory-sourced fallback that stops working November 9 |
Query it directly with Microsoft Graph PowerShell:
Connect-MgGraph -Scopes "Reports.Read.All"
Get-MgReportAuthenticationMethodUserRegistrationDetail -All `
-Filter "isSsprEnabled eq true and isSsprCapable eq false" |
Select-Object UserPrincipalName, IsSsprRegistered, IsSsprCapable, MethodsRegistered
Or the equivalent Graph REST call:
GET https://graph.microsoft.com/v1.0/reports/authenticationMethods/userRegistrationDetails?$filter=isSsprCapable eq false and isSsprEnabled eq true
Every user this returns is someone who can reset their password today via a directory-sourced attribute, and will not be able to on November 9 — a support-desk spike waiting to happen if it's not fixed first.
Remediation
💡 Quick Win: Run the Graph query above now, before the October 5 registration campaign even starts. Fixing gaps ahead of the automated nudges means fewer users get surprised mid-workflow.
- Inventory now. Pull the full
userRegistrationDetailsreport and isolate every SSPR-enabled account whereisSsprCapableisfalse. Prioritize accounts with privileged roles — an admin locked out of SSPR has a much more expensive recovery path. Our guide to auditing Microsoft Entra ID security covers this report alongside the rest of your MFA and Conditional Access posture. - Register real methods, not directory copies. Have affected users complete the combined MFA/SSPR registration flow so a phone number or email is explicitly registered, not just present as a profile attribute. Registering
mobilePhoneas an authentication method is a one-time action per user, not automatic. Where possible, push users toward a passkey as their first registered method instead of phone/email, since it satisfies both MFA and SSPR requirements at once. - Confirm your SSPR policy's method count. In Entra admin center → Authentication methods → Password reset properties, check how many methods your policy requires. If it's set to one, registration gaps affect fewer people; if two, gaps compound.
- Don't rely on the campaign alone. The October 5 registration campaign only prompts users who are already missing methods — it doesn't retroactively populate anything, and it can be excluded for specific groups. Communicate the November 9 deadline to your organization directly rather than assuming the built-in nudges will reach everyone in time.
- Re-run the report before November 9. Confirm
isSsprCapableistruefor every SSPR-enabled user, then check again after the deadline to catch any stragglers before they call the help desk.
How EtcSec Detects This
EtcSec's Entra ID audit checks for exactly this kind of registration gap. AUTH_METHODS_NO_REGISTRATION flags tenants that haven't enabled Microsoft's authentication-method registration campaign, SSPR_NOT_ENABLED flags SSPR left off entirely, and SSPR_NOT_REQUIRED_ADMINS catches the highest-risk case — administrators exempted from SSPR registration requirements who are about to lose their unregistered fallback along with everyone else.
ℹ️ Note: EtcSec automatically checks for authentication-method registration coverage during every Azure/Entra ID audit. Run a free audit to see which of your users would be locked out of SSPR after November 9, 2026.
Explore the identity security pages that support this topic
