How to manually sync AD to Azure

Vicky Sardaryan 0 Reputation points
2025-08-27T22:05:08.27+00:00

How to manually sync AD to Azure, the users that I had created in AD have not been syncing to Azure.

Azure Advisor
Azure Advisor
An Azure personalized recommendation engine that helps users follow best practices to optimize Azure deployments.
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Marcin Policht 54,995 Reputation points MVP Volunteer Moderator
    2025-08-27T22:18:06.1133333+00:00

    Follow https://learn.microsoft.com/en-us/entra/identity/hybrid/connect/how-to-connect-install-roadmap


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    0 comments No comments

  2. Anurag Rohikar 600 Reputation points Microsoft External Staff Moderator
    2025-08-29T06:31:01.3133333+00:00

    Hello Vicky Sardaryan, Thanks for reaching out on Microsoft Q&A and really appreciate your patience while we looked into this
    When new users are created in your on-prem Active Directory (AD), sometimes they don’t immediately appear in Azure Active Directory (Entra ID). This usually happens if the synchronization cycle hasn’t yet run or if there are configuration issues.

    To manually trigger a sync, you can follow these steps:

    1. Check Sync Tool in Use
      • If you’re using Azure AD Connect (most common), the sync normally runs every 30 minutes by default.
    2. Run a Manual Sync via PowerShell Open PowerShell on the server running Azure AD Connect and run:
    # Import ADSync module
    Import-Module ADSync
    # Start a Delta Sync (only changes)
    Start-ADSyncSyncCycle -PolicyType Delta
    # Or, run a Full Sync (all objects, takes longer)
    Start-ADSyncSyncCycle -PolicyType Initial
    
    1. Verify Sync Status
      • In the Azure AD Connect tool, confirm the last sync time.
      • In the Microsoft Entra admin center, check if the new users are showing up.
    2. If Sync Still Fails
      • Ensure that the users are in the scope of synchronization (OU filtering, attribute filtering, etc.).
      • Review the AD Connect logs for any sync errors.

    Documentation:

    Hope this helps clarify! Thank you!

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.