A cloud-based identity and access management service for securing user authentication and resource access
Hey Christian, implementing Password Writeback alongside SSPR is a solid way to give users full self-service password reset capabilities both in the cloud and on-premises. That said, there are a few “gotchas” and added overhead you’ll want to account for:
- Licensing and cost • Password Writeback is a premium feature – you’ll need Microsoft Entra ID P1/P2, EMS or SPE licenses for on-premises users (O365 paid SKUs or Entra Basic for cloud-only). • Every user who can reset or write back needs a valid license.
- Infrastructure, connectivity & firewall rules • You must run Azure AD Connect (1.1.443+) or cloud sync agents and point them at a PDC emulator in each forest. • Outbound HTTPS needs to be whitelisted to passwordreset.microsoftonline.com and servicebus.windows.net. • Idle connections must remain open 2–3 minutes for the service bus relay to work reliably.
- Additional operational overhead • You’ll need to monitor Azure AD Connect health, ensure full imports/syncs occur before testing writeback, and periodically upgrade agents. • Troubleshooting can be trickier—if writeback fails you’ll dig into event logs, network traces and service bus diagnostics.
- Supported topologies & versions • Only Windows Server 2008 R2, 2012, 2012 R2, 2016, 2019 (latest service packs) are supported on-prem. • Multi-forest or complex AD layouts require extra connector configuration (only use preferred domain controllers).
- Latency & failure scenarios • Writeback isn’t instant if your on-prem agent is down or connectivity blips—the message lives in the service bus for a few minutes before timing out. • If your on-prem password policy is stricter than cloud, some resets that pass SSPR may still be rejected by AD DS.
All of that being said, many organizations run SSPR + Password Writeback successfully—just plan for the extra licensing, configuration and monitoring. Hope it helps!
Reference list
- Licensing requirements for SSPR & Password Writeback https://docs.microsoft.com/azure/active-directory/active-directory-passwords-licensing
- How Self-Service Password Reset Writeback Works (security & flow) https://learn.microsoft.com/entra/identity/authentication/concept-sspr-writeback
- Azure AD Connect sync operations & Preferred DC setup https://docs.microsoft.com/azure/active-directory/connect/active-directory-aadconnectsync-operations
- Troubleshoot Password Writeback https://docs.microsoft.com/azure/active-directory/active-directory-passwords-troubleshoot
Let us know if you need any further assistance