Implementing password synchronization with Azure AD Connect sync
This topic provides you with the information you need to synchronize your user passwords from an on-premises Active Directory (AD) to a cloud-based Azure Active Directory (Azure AD).
What is password synchronization
The probability that you are blocked from getting your work done due to a forgotten password is related to the number of different passwords you need to remember. The more passwords you need to remember, the higher the probability to forget one. Questions and calls about password resets and other password-related issues demand the most helpdesk resources.
Password synchronization is a feature to synchronize user passwords from an on-premises Active Directory to a cloud-based Azure Active Directory (Azure AD). This feature enables you to sign in to Azure Active Directory services (such as Office 365, Microsoft Intune, CRM Online and Azure AD Domain Services) using the same password you are using to sign in to your on-premises Active Directory.
By reducing the number of passwords your users need to maintain to just one, password synchronization helps you to:
- Improve the productivity of your users
- Reduce your help desk related costs
Also, if you select to use Federation with AD FS, you can optionally enable password synchronization as a backup in case your AD FS infrastructure fails.
Password synchronization is an extension to the directory synchronization feature implemented by Azure AD Connect sync. To use password synchronization in your environment, you need to:
-
Install Azure AD Connect
-
Configure directory synchronization between your on-premises AD and your Azure Active Directory
-
Enable password synchronization
For more details, see Integrating your on-premises identities with Azure Active Directory
[AZURE.NOTE] For more details about Active Directory Domain Services that are configured for FIPS and password synchronization, see Password Sync and FIPS.
How password synchronization works
The Active Directory domain service stores passwords in form of a hash value representation of the actual user password. A hash value is a result of a one way mathematical function (the "hashing algorithm"). There is no method to revert the result of a one way function to the plain text version of a password. You cannot use a password hash to sign in to your on-premises network.
To synchronize your password, Azure AD Connect sync extracts your password hash from the on-premises Active Directory. Extra security processing is applied to the password hash before it is synchronized to the Azure Active Directory authentication service. Passwords are synchronized on a per-user basis and in chronological order.
The actual data flow of the password synchronization process is similar to the synchronization of user data such as DisplayName or Email Addresses. However, passwords are synchronized more frequently than the standard directory synchronization window for other attributes. The password synchronization process runs every 2 minutes. You cannot modify the frequency of this process. When you synchronize a password, it overwrites the existing cloud password.
The first time, you enable the password synchronization feature, it performs an initial synchronization of the passwords of all in-scope users. You cannot explicitly define a subset of user passwords you want to synchronize.
When you change an on-premises password, the updated password is synchronized, most often in a matter of minutes. The password synchronization feature automatically retries failed synchronization attempts. If an error occurs during an attempt to synchronize a password, an error is logged in your event viewer.
The synchronization of a password has no impact on the currently logged on user. Your current cloud service session is not immediately affected by a synchronized password change that occurs while you are signed in to a cloud service. However, when the cloud service requires you to authenticate again, you need to provide your new password.
[AZURE.NOTE] Password sync is only supported for the object type user in Active Directory. It is not supported for the iNetOrgPerson object type.
How password synchronization works with Azure AD Domain Services
You can also use the password synchronization feature to synchronize your on-premises passwords to the Azure AD Domain Services. This scenario allows the Azure AD Domain Services to authenticate your users in the cloud with all the methods available in your on-premises AD. The experience of this scenario is similar to using the Active Directory Migration Tool (ADMT) in an on-premises environment.
Security considerations
When synchronizing passwords, the plain text version of your password is not exposed to the password synchronization feature, to Azure AD or any of the associated services.
Also, there is no requirement on the on-premises Active Directory to store the password in a reversibly encrypted format. A digest of the Active Directory password hash is used for the transmission between the on-premises AD and Azure Active Directory. The digest of the password hash cannot be used to access resources in your on-premises environment.
Password policy considerations
There are two types of password policies that are affected by enabling password synchronization:
- Password Complexity Policy
- Password Expiration Policy
Password complexity policy
When you enable password synchronization, the password complexity policies in your on-premises Active Directory override complexity policies in the cloud for synchronized users. You can use all valid passwords of your on-premises Active Directory to access Azure AD services.
[AZURE.NOTE] Passwords for users that are created directly in the cloud are still subject to password policies as defined in the cloud.
Password expiration policy
If a user is in the scope of password synchronization, the cloud account password is set to "Never Expire." You can continue to sign in to your cloud services using a synchronized password that has been expired in your on-premises environment. Your cloud password is updated the next time you change the password in the on-premises environment.
Overwriting synchronized passwords
An administrator can manually reset your password using Windows PowerShell.
In this case, the new password overrides your synchronized password and all password policies defined in the cloud are applied to the new password.
If you change your on-premises password again, the new password is synchronized to the cloud, and overrides the manually updated password.
Enabling password synchronization
Password synchronization is automatically enabled, when you install Azure AD Connect using the Express Settings. For more details, see Getting started with Azure AD Connect using express settings.
If you use custom settings when you install Azure AD Connect, you enable password synchronization on the user sign-in page. For more details, see Custom installation of Azure AD Connect
Password synchronization and FIPS
If your server has been locked down according to Federal Information Processing Standard (FIPS), then MD5 has been disabled.
To enable MD5 for password synchronization, perform the following steps:
<configuration>
<runtime>
<enforceFIPSPolicy enabled="false"/>
</runtime>
</configuration>
- Go to %programfiles%\Azure AD Sync\Bin.
- Open miiserver.exe.config.
- Go to the configuration/runtime node (at the end of the file).
- Add the following node: <enforceFIPSPolicy enabled="false"/>
- Save your changes.
For information about security and FIPS see AAD Password Sync, Encryption and FIPS compliance
Troubleshooting password synchronization
You can easily troubleshoot password synchronization related issues by reviewing the current status of an object.
To troubleshoot password synchronization, perform the following steps:
-
Start the Synchronization Service Manager.
-
Click Connectors.
-
Select the Active Directory Connector the user is located in.
-
Select Search Connector Space.
-
Locate the user you are looking for.
-
Select the lineage tab and make sure that at least one Sync Rule shows Password Sync as True. In the default configuration, the name of the Sync Rule is In from AD - User AccountEnabled.
-
You should also follow the user through the metaverse to the Azure AD Connector space. The connector space object should have an outbound rule with Password Sync set to True. In the default configuration, the name of the sync rule is Out to AAD - User Join.
-
To see the password sync details of the object for the past week, click Log....
The status column can have the following values:
| Status | Description |
|---|---|
| Success | Password has been successfully synchronized. |
| FilteredByTarget | Password is set to User must change password at next logon. Password has not been synchronized. |
| NoTargetConnection | No object in the metaverse or in the Azure AD connector space. |
| SourceConnectorNotPresent | No object found in the on-premises Active Directory connector space. |
| TargetNotExportedToDirectory | The object in the Azure AD connector space has not yet been exported. |
| MigratedCheckDetailsForMoreInfo | Log entry was created before build 1.0.9125.0 and is shown in its legacy state. |
Triggering a full sync of all passwords
Typically, there is no need to trigger a full sync of all passwords. However, if necessary, you can trigger a full sync of all passwords using the following script:
$adConnector = "<CASE SENSITIVE AD CONNECTOR NAME>"
$aadConnector = "<CASE SENSITIVE AAD CONNECTOR NAME>"
Import-Module adsync
$c = Get-ADSyncConnector -Name $adConnector
$p = New-Object Microsoft.IdentityManagement.PowerShell.ObjectModel.ConfigurationParameter “Microsoft.Synchronize.ForceFullPasswordSync”, String, ConnectorGlobal, $null, $null, $null
$p.Value = 1
$c.GlobalParameters.Remove($p.Name)
$c.GlobalParameters.Add($p)
$c = Add-ADSyncConnector -Connector $c
Set-ADSyncAADPasswordSyncConfiguration -SourceConnector $adConnector -TargetConnector $aadConnector -Enable $false
Set-ADSyncAADPasswordSyncConfiguration -SourceConnector $adConnector -TargetConnector $aadConnector -Enable $true




