You are currently viewing Force Azure AD Connect Sync to Azure AD

Force Azure AD Connect Sync to Azure AD

Azure AD Sync runs every 30 minutes by default, there may be many reasons to want to force a sync if you don’t want to wait that long.

Here’s how to do it!

Open PowerShell and import the ADSync module:

1Import-Module ADSync

Check current schedule:

1Get-ADSyncScheduler

To force a Delta sync:

1Start-ADSyncSyncCycle -PolicyType Delta

To force a full or initial sync:

1Start-ADSyncSyncCycle -PolicyType Initial

Leave a Reply