<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>aad connect password writeback Archives - the Sysadmin Channel</title>
	<atom:link href="https://thesysadminchannel.com/tag/aad-connect-password-writeback/feed/" rel="self" type="application/rss+xml" />
	<link>https://thesysadminchannel.com/tag/aad-connect-password-writeback/</link>
	<description>Documenting My Life as a System Administrator</description>
	<lastBuildDate>Mon, 25 Apr 2022 02:28:14 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
<site xmlns="com-wordpress:feed-additions:1">144174110</site>	<item>
		<title>How To Enable Self-Service Password Reset (SSPR) In Azure AD</title>
		<link>https://thesysadminchannel.com/how-to-enable-self-service-password-reset-sspr-in-azure-ad/</link>
					<comments>https://thesysadminchannel.com/how-to-enable-self-service-password-reset-sspr-in-azure-ad/#respond</comments>
		
		<dc:creator><![CDATA[Paul Contreras]]></dc:creator>
		<pubDate>Sun, 24 Apr 2022 06:59:36 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Office365]]></category>
		<category><![CDATA[aad connect password writeback]]></category>
		<category><![CDATA[azure ad sspr]]></category>
		<category><![CDATA[Enable Self-Service Password Reset]]></category>
		<category><![CDATA[sspr for hybrid aad]]></category>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=2151</guid>

					<description><![CDATA[<p>The ability for end users to be able to reset their own password is essential for eliminating administrative overhead and is something that should be enabled in just about every organization. With that said, we are going to go over&#8230; <a href="https://thesysadminchannel.com/how-to-enable-self-service-password-reset-sspr-in-azure-ad/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://thesysadminchannel.com/how-to-enable-self-service-password-reset-sspr-in-azure-ad/">How To Enable Self-Service Password Reset (SSPR) In Azure AD</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The ability for end users to be able to reset their own password is essential for eliminating administrative overhead and is something that should be enabled in just about every organization.  With that said, we are going to go over how to <strong>enable self-service password reset (SSPR) In Azure AD</strong>.<br />
&nbsp;</p>
<p>Feel free navigate to any portion of the article using the table of contents below.</p>
<div id="tableofcontents">
<h2>Table Of Contents</h2>
<ul>
<li><a href="#requirements">Requirements</a></li>
<li><a href="#enablessprcloudonly">Enable Self-Service Password Reset for Cloud Only Environments</a></li>
<li><a href="#enablessprhybrid">Enable SSPR for Hybrid Environments</a></li>
<ul>
<li><a href="#passwordwriteback">Set up Password Write Back in Azure AD Connect</a></li>
</ul>
<li><a href="#ssprauthmethod">Configure SSPR Authentication Methods</a></li>
<li><a href="#ssprregistration">Require Registration for Self-Service Password Reset</a></li>
<li><a href="#onpremintegration">Confirm On-premises Integration</a></li>
<li><a href="#conclusion">Conclusion</a></li>
</ul>
</div>
<p>&nbsp;</p>
<div id="requirements" style="scroll-margin-top: 15px;"></div>
<h2>Requirements</h2>
<p>As mentioned, this is definitely something that should be enabled for just about every organization out there, but there are a few things you should know if you want to implement this for your org.  Let&#8217;s list them out here and what you&#8217;ll need.</p>
<ul>
<li>A Global Administrator. This is needed to modify SSPR settings</li>
<li>Azure AD P1 or P2 license (for Hybrid environments only)</li>
</ul>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2020/08/Azure-AD-SSPR-Licensing.png" target="_blank" rel="noopener"><img fetchpriority="high" decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2020/08/Azure-AD-SSPR-Licensing.png" alt="Azure AD self-service password reset Licensing" width="822" height="431" class="aligncenter size-full wp-image-4095" srcset="https://thesysadminchannel.com/wp-content/uploads/2020/08/Azure-AD-SSPR-Licensing.png 822w, https://thesysadminchannel.com/wp-content/uploads/2020/08/Azure-AD-SSPR-Licensing-768x403.png 768w" sizes="(max-width: 822px) 100vw, 822px" /></a><br />
&nbsp;</p>
<div id="enablessprcloudonly" style="scroll-margin-top: 15px;"></div>
<h2>Enable Self-Service Password Reset for Cloud Only Environments</h2>
<p>If you&#8217;re a cloud only environment, meaning you don&#8217;t have any users syncing from on-premises Active Directory, it is pretty simple to enable self-service password reset. Let&#8217;s cover the steps now.</p>
<p>In Azure Active Directory:</p>
<ul>
<li>Navigate to <strong>Password Reset</strong></li>
<ul>
<li>Direct Link: <a href="https://portal.azure.com/#blade/Microsoft_AAD_IAM/PasswordResetMenuBlade/Properties" rel="noopener" target="_blank">https://portal.azure.com/#blade/Microsoft_AAD_IAM/PasswordResetMenuBlade/Properties</a></li>
</ul>
<li>Under <strong>Self-Service password reset enabled</strong>, select your choice of All or a specified group</li>
<ul>
<li>As a pilot, I&#8217;ve selected a group but it is generally recommended to enable it for all users</li>
</ul>
</ul>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Group-Properties.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Group-Properties.png" alt="enable self-service password reset group properties" width="993" height="594" class="aligncenter size-full wp-image-4103" srcset="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Group-Properties.png?v=1650827582 993w, https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Group-Properties-125x75.png?v=1650827582 125w, https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Group-Properties-768x459.png?v=1650827582 768w" sizes="(max-width: 993px) 100vw, 993px" /></a><br />
&nbsp;</p>
<div id="enablessprhybrid" style="scroll-margin-top: 15px;"></div>
<h2>Enable Self-Service Password Reset for Hybrid Environments</h2>
<p>In order to enable self-service password reset for hybrid environments, you&#8217;ll need to complete the steps above because that is the baseline configuration needed in order to make this work.<br />
&nbsp;</p>
<p>Furthermore, if you&#8217;re syncing onprem Active Directory users to Azure AD there is still more to do in the AAD Connect wizard.  Let&#8217;s cover those steps now.</p>
<div id="passwordwriteback" style="scroll-margin-top: 15px;"></div>
<h2>Set up Password Write Back in Azure AD Connect</h2>
<p>Logon to your Azure AD Connect Server and <strong>launch the Azure AD Connect wizard</strong>.</p>
<li>Once launched, click <strong>configure</strong></li>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Configure.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Configure.png" alt="AAD Connect Configure" width="879" height="624" class="aligncenter size-full wp-image-4106" srcset="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Configure.png?v=1650829166 879w, https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Configure-768x545.png?v=1650829166 768w" sizes="(max-width: 879px) 100vw, 879px" /></a><br />
&nbsp;</p>
<li>Click on <strong>Customize synchronization options</strong>, and click <strong>Next</strong></li>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Customize-Sync-options.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Customize-Sync-options.png" alt="AAD Connect Customize Sync options" width="879" height="620" class="aligncenter size-full wp-image-4108" srcset="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Customize-Sync-options.png?v=1650830137 879w, https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Customize-Sync-options-768x542.png?v=1650830137 768w" sizes="(max-width: 879px) 100vw, 879px" /></a><br />
&nbsp;</p>
<li>Enter in a Global Administrator -or a <strong>Hybrid Identity Administrator</strong> (preferred) account to connect to Azure AD.</li>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-to-Azure-AD.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-to-Azure-AD.png" alt="AAD Connect to Azure AD" width="877" height="620" class="aligncenter size-full wp-image-4110" srcset="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-to-Azure-AD.png?v=1650830793 877w, https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-to-Azure-AD-768x543.png?v=1650830793 768w" sizes="(max-width: 877px) 100vw, 877px" /></a><br />
&nbsp;</p>
<li>Click next a few times until you get to <strong>Optional Features</strong>, once there, ensure <strong>Password writeback</strong> is checked.</li>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Optional-Features-for-password-writeback.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Optional-Features-for-password-writeback.png" alt="AAD Connect Optional Features for password writeback" width="879" height="620" class="aligncenter size-full wp-image-4111" srcset="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Optional-Features-for-password-writeback.png?v=1650831079 879w, https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Optional-Features-for-password-writeback-768x542.png?v=1650831079 768w" sizes="(max-width: 879px) 100vw, 879px" /></a><br />
&nbsp;</p>
<li>Click next until you reach the ready to configure screen.  Once there, ensure <strong>Start the synchronization process when configuration completes</strong> is checked and click <strong>Configure</strong></li>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Complete-Configuration-options.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Complete-Configuration-options.png" alt="AAD Connect Complete Configuration options" width="881" height="621" class="aligncenter size-full wp-image-4114" srcset="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Complete-Configuration-options.png?v=1650831460 881w, https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Complete-Configuration-options-768x541.png?v=1650831460 768w" sizes="(max-width: 881px) 100vw, 881px" /></a><br />
&nbsp;</p>
<li>Once complete, exit the AAD Connect wizard.</li>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Configuration-Complete.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Configuration-Complete.png" alt="AAD Connect Configuration Complete" width="879" height="619" class="aligncenter size-full wp-image-4117" srcset="https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Configuration-Complete.png?v=1650831870 879w, https://thesysadminchannel.com/wp-content/uploads/2022/04/AAD-Connect-Configuration-Complete-768x541.png?v=1650831870 768w" sizes="(max-width: 879px) 100vw, 879px" /></a><br />
&nbsp;</p>
<div id="ssprauthmethod" style="scroll-margin-top: 15px;"></div>
<h2>Configure SSPR Authentication Methods</h2>
<p>Once we&#8217;ve enabled SSPR for the environment we stop now but I thought it would be a good idea to take a few more minutes to look over some of the sub settings that are in the password reset blade.<br />
&nbsp;</p>
<p>In order for a user to reset their password, they&#8217;ll need to provide some form of identity verification.  This is essential from a security standpoint, and prevents joe user (or a potential hacker) to gain access to your account.  In any event, let&#8217;s take a look at the authentication methods that are required in order to reset a user&#8217;s password.</p>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Authentication-Method-Properties.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Authentication-Method-Properties.png" alt="enable self-service password reset authentication method properties" width="994" height="607" class="aligncenter size-full wp-image-4120" srcset="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Authentication-Method-Properties.png?v=1650848152 994w, https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Authentication-Method-Properties-125x75.png?v=1650848152 125w, https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Authentication-Method-Properties-768x469.png?v=1650848152 768w" sizes="(max-width: 994px) 100vw, 994px" /></a><br />
&nbsp;</p>
<p>By default, email and phone are enabled because 2 methods are required but I also like to add <strong>mobile app code</strong> because it uses MFA as a verification method.  This helps reduce the attack surface for anyone changing their password.</p>
<div id="ssprregistration" style="scroll-margin-top: 15px;"></div>
<h2>Require Registration for Self-Service Password Reset</h2>
<p>In the previous years of SSPR, you were required to register for self-service password reset AND register for MFA.  This was kind of a pain point because users had to  register for 2 items.  Thankfully, the team at Microsoft integrated these and today we can use <a href="https://docs.microsoft.com/en-us/azure/active-directory/authentication/concept-registration-mfa-sspr-combined#combined-registration-modes" rel="noopener" target="_blank">combined registration mode</a> for SSPR and MFA.  This is great because as the name suggests, you will only need to register 1 time and that will be active for both items.<br />
&nbsp;</p>
<p>Furthermore, let&#8217;s head into the registration blade:</p>
<li>Ensure <strong>Require users to register when signing in</strong> is set to <strong>Yes</strong></li>
<li>Leave the <strong>Number of days before users are asked to re-confirm their authentication information</strong> to <strong>180</strong></li>
<li>Save the settings if anything was changed</li>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Registration.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Registration.png" alt="enable self-service password reset registration" width="1006" height="590" class="aligncenter size-full wp-image-4123" srcset="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Registration.png?v=1650849869 1006w, https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Registration-768x450.png?v=1650849869 768w, https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Registration-300x175.png?v=1650849869 300w" sizes="(max-width: 1006px) 100vw, 1006px" /></a><br />
&nbsp;</p>
<div id="onpremintegration" style="scroll-margin-top: 15px;"></div>
<h2>Confirm On-premises Integration</h2>
<p>If you&#8217;re wondering if password writeback is enabled and don&#8217;t have access to view the configuration in the Azure AD Connect wizard? That&#8217;s not a problem because we can easily check this in the password reset blade.<br />
&nbsp;</p>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Registration-1.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Registration-1.png" alt="SSPR Registration" width="904" height="514" class="aligncenter size-full wp-image-4125" srcset="https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Registration-1.png?v=1650850554 904w, https://thesysadminchannel.com/wp-content/uploads/2022/04/SSPR-Registration-1-768x437.png?v=1650850554 768w" sizes="(max-width: 904px) 100vw, 904px" /></a></p>
<div id="conclusion" style="scroll-margin-top: 15px;"></div>
<h2>Conclusion</h2>
<p>Hopefully this article was able to provide in-depth detail on how to enable self-service password (SSPR) in Azure Active Directory.  As mentioned, this is something that should be enabled for your organization help eliminate administrative overhead.  Your users will happy, and you&#8217;ll be happy because you won&#8217;t be getting calls to reset a password.</p>
<p>The post <a href="https://thesysadminchannel.com/how-to-enable-self-service-password-reset-sspr-in-azure-ad/">How To Enable Self-Service Password Reset (SSPR) In Azure AD</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://thesysadminchannel.com/how-to-enable-self-service-password-reset-sspr-in-azure-ad/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2151</post-id>	</item>
	</channel>
</rss>
