In every organization, the possibility of role changes or change of contact information can occur quite frequently. AzureAD Connect is a great tool that allows administrators to make said updates either on-premises or in cloud and will sync all changes accordingly. It can take up to 30 minutes for Azure Active Directory to update these changes when these changes are applied on the on-premises Active Directory instance and vice-versa via AzureAD Connect. It can also take up to an additional 30 minutes to then sync changes with Office 365. This post will detail steps to force AzureAD Connect to sync on command when required via PowerShell to combat the delay.
Lets begin.
Import-Module ADSync
Get-ADSyncSchedulerNOTE: The report should show intervals of 30 minute syncs and a sync policy type of Delta. A sync policy type of Initial is usually shown after AzureAD Connect's initial sync but can also be forced as detailed in the next step.
Start-ADSyncSyncCycle -PolicyType DeltaNOTE: This will only sync current changes. Run the following command to force a complete sync but note that the length of sync time would be greatly increased.
Start-ADSyncSyncCycle -PolicyType Initial
Other customized commands can be applied to AzureAD Connect to conduct specific synchronization tasks. These additional commands are documented here: Azure AD Connect sync: Understand and customize synchronization.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.