Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
A guide to forcing a synchronization with Azure AD Connect.
October 12, 2015
Q. With Azure AD Connect how can I force a synchronization?
A. To force a synchronization from AD to Azure AD PowerShell is used. To perform a delta synchronization run:
Start-ADSyncSyncCycle -PolicyType Delta
To perform a full synchronization use:
Start-ADSyncSyncCycle -PolicyType Initial
You May Also Like