how to check current version of Azure AD and Azure AD Schema

Richa Kumari 286 Reputation points
2023-11-28T10:14:31.42+00:00

hello,

how to know the current version of Azure AD and Azure AD Schema, is any release notes or article on this by Microsoft.

where know no way to check in portal or its versionless.

Thanks
Rich

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
21,792 questions
{count} votes

2 answers

Sort by: Most helpful
  1. SIMON Witali 1 Reputation point
    2023-11-28T10:28:27.9566667+00:00

    Hallo Rich,

    to check the Shema:
    https://learn.microsoft.com/en-us/entra/identity/hybrid/cloud-sync/concept-attributes

    Maybe you want to know the version of Azure AD Connect?


  2. JamesTran-MSFT 36,626 Reputation points Microsoft Employee
    2023-12-04T20:37:20.1233333+00:00

    @Richa Kumari

    Thank you for your post and I apologize for the delayed response!

    When it comes to checking for the most up to date version of MS Entra (Azure AD) Connect (2.2.8.0 released 10/11/2023), you can reference the Microsoft Entra Connect: Version release history documentation to get the most up to date information. Additionally, adding onto what was mentioned by Simon, you can leverage the Get synchronizationSchema REST API to view your synchronization schema version.


    View the synchronization schema:

    1. Go to Graph Explorer.
    2. Sign in with your global administrator account.
    3. On the left, select modify permissions and ensure that Directory.ReadWrite.All is Consented.
    4. Run the query https://graph.microsoft.com/beta/serviceprincipals/?$filter=startswith(DisplayName, ‘{sync config name}’). This query returns a filtered list of service principals. This can also be acquired via the App Registration node under Microsoft Entra ID.
    5. Locate "appDisplayName": "Active Directory to Azure Active Directory Provisioning" and note the value for "id".
    6. Replace {Service Principal id} with your value, and run the query https://graph.microsoft.com/beta/serviceprincipals/{Service Principal id}/synchronization/jobs/.
    7. Locate "id": "AD2AADProvisioning.fd1c9b9e8077402c8bc03a7186c8f976" and note the value for "id".
    8. Now run the query https://graph.microsoft.com/beta/serviceprincipals/{Service Principal Id}/synchronization/jobs/{AD2AAD Provisioning id}/schema.

    Replace {Service Principal Id} and {AD2ADD Provisioning Id} with your values.

    1. This query returns the synchronization schema.

    User's image


    Additional Links:

    I hope this helps!

    If you have any other questions, please let me know. Thank you for your time and patience throughout this issue.


    If the information helped address your question, please Accept the answer. This will help us and also improve searchability for others in the community who might be researching similar information.

    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.