This is a simple guide to perform an adsync full or delta sync trough powershell
First, import the module:
1 |
Import-Module ADSync |
Then, you could two way.
First a Delta import
1 |
Start-ADSyncSyncCycle -PolicyType Delta |
Secondly is a full import
1 |
Start-ADSyncSyncCycle -PolicyType Initial |
Finally, you could check the scheduler to see when the sync will happen .
1 |
Get-ADSyncScheduler |