This time I’ve created a list of all Office 365 Sync tools (Dirsync / AADSync / AADConnect), and their different updates methodes.
AADConnect (build 1.1.105.0 and up from Februari 2016 and later)
There is NO Scheduled task anymore in this version!
You can check the schedule by :
Get-ADSyncScheduler
Start a Delta sync:
Start-ADSyncSyncCycle -PolicyType Delta
Start a Full sync:
Start-ADSyncSyncCycle -PolicyType initial
More info about this version of AADConnect:
AADSync and AADConnect
Start a Delta sync:
cd "C:\Program Files\Microsoft Azure AD Sync\Bin" .\DirectorySyncClientCmd.exe delta
Start a Full sync:
cd "C:\Program Files\Microsoft Azure AD Sync\Bin" .\DirectorySyncClientCmd.exe initial
Dirsync (Latest edition)
Start PowerShell:
Import-Module Dirsync Start-OnlineCoexistenceSync
Dirsync (Early edition)
You need to update Dirsync in PowerShell:
Cd "C:\Program Files\Microsoft Online Directory Sync"
Or
cd "C:\Program Files\Windows Azure Directory Sync"
Then execute:
DirSyncConfigshell.psc1
After this execute:
Start-OnlineCoexistenceSync
Leave a Reply