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:
1 | Import-Module ADSync |

Check current schedule:
1 | Get-ADSyncScheduler |

To force a Delta sync:
1 | Start-ADSyncSyncCycle -PolicyType Delta |

To force a full or initial sync:
1 | Start-ADSyncSyncCycle -PolicyType Initial |
