Sure thing.
Assuming a sync isnt already in progress, run from powershell on the AADConnect Server
Start-ADSyncSyncCycle -PolicyType Delta
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
For example, I am trying to add a user in our on prem AD and want to automatically sync with azure ad. Is this possible? We use azure-ad-connect
Sure thing.
Assuming a sync isnt already in progress, run from powershell on the AADConnect Server
Start-ADSyncSyncCycle -PolicyType Delta
Hi @Kevin Hinds
Thank you for asking this question on the **Microsoft Q&A Platform. **
With Azure AD Connect you do what you need,
The synchronization is not automatically, usually, it happens every 30 minutes
You can force the synchronization with the following Powershell commands on the server where Azure AD Connect is installed:
Start-ADSyncSyncCycle -PolicyType Delta
This will only synchronize current changes.
Run the following command to force a complete sync but note that the length of sync time would be increased.
Start-ADSyncSyncCycle -PolicyType Initial
Hope this helps,
Carlos Solís Salazar
----------
Accept Answer and Upvote, if any of the above helped, this thread can help others in the community looking for remediation for similar issues.
NOTE: To answer you as quickly as possible, please mention me in your reply.