Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
With AAD Connect 1.1, Microsoft no longer have a Windows scheduled task running every 3 hours.
The tool now has a built-in scheduler, performing a delta sync every 30 minutes.
To check the scheduler's current configuration:
Start Windows PowerShell on the server running the AAD connect 1.1 and type
Import-Module ADSync
followed by
Get-ADSyncScheduler
To force a full sync from Windows PowerShell
Import-Module ADSync
followed by
Start-ADSyncSyncCycle -PolicyType Initial
To force a delta sync:
Import-Module ADSync
followed by
Start-ADSyncSyncCycle -PolicyType Delta
Thanks for Henrik for the detailed blog post on https://www.msexchange.org/blogs/walther/news/azure-ad-connect-11-forcing-synchronization.html
Comments
- Anonymous
April 17, 2016
thanks a lot :)