Replicate the azure id and default time to sync.

Gurudas 886 Reputation points
2022-04-05T04:18:12.8+00:00

Hello All,

Please let me know how to synchronize local active Directory newly created object with Azure active directory.

New ad object: John.dave@rayn .contoso.com
Requirement: Need kb article with screenshots

  1. Need to sync johns account in Azure ad.
  2. Can we reduce the time to sync the ad object.

Thank you in advance :)

Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
5,898 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,561 questions
0 comments No comments
{count} votes

Accepted answer
  1. T. Kujala 8,706 Reputation points
    2022-04-05T04:23:36.033+00:00

    Hi @GurudasSatardekar,

    Here you will find more information.

    https://learn.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-sync-feature-scheduler

    If you need to manually run a sync cycle, then from PowerShell run Start-ADSyncSyncCycle -PolicyType Delta.

    To initiate a full sync cycle, run Start-ADSyncSyncCycle -PolicyType Initial from a PowerShell prompt.

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Carlos Solís Salazar 16,611 Reputation points
    2022-04-05T07:24:14.74+00:00

    Hi @GurudasSatardekar

    Thank you for asking this question on the **Microsoft Q&A Platform. **

    The synchronization, usually, 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  
    

    More info: https://techcommunity.microsoft.com/t5/itops-talk-blog/powershell-basics-how-to-force-azuread-connect-to-sync/ba-p/887043

    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.


    0 comments No comments