At this point, two fundamental commands of critical operational importance come into play.
When a change is made to the structure, it is expected that the change will take effect without delay.
Two different approaches are offered to meet this need:
The delta approach ensures that only the most recent change is transferred to the system.
The Initial approach, on the other hand, aims to completely rebuild the existing structure and replicate it fully to the cloud environment.
Import-Module ADSync
Get-ADSyncScheduler
Start-ADSyncSyncCycle -PolicyType Delta
(For delta synchronization use the parameter used in most situations)
Start-ADSyncSyncCycle -PolicyType Initial
(For full synchronization, use the parameter rarely used)