Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I check to see if my AzureAD version is V1 or V2?

Where would I look to check the AzureAD version? Is there some command line utility that would return the version, or some rest endpoint that gives basic information like that?

like image 780
John Avatar asked Aug 31 '17 17:08

John


People also ask

How do I know what version of azure I have?

On your Windows server, click Start and launch the Synchronization Service Manager. On the Menu, click Help > About. You can now see the Azure AD Connect version which is version 2.0.

What is Azure AD V2 endpoint?

Azure AD Connect is Microsoft's free tool to synchronize objects and their attributes from Active Directory Domain Services (AD DS) implementations to Azure Active Directory tenants.

What is the current version of Azure AD?

1.6. 16.0. This release is an update release of Azure AD Connect.


1 Answers

Azure AD itself is versionless. What can be v1 or v2 is the endpoint and app registration with which you talk to it.

Check out the docs on the v2 endpoint and a v1 vs v2 comparison

For most URLs (metadata, authorize, token), you can tell based on whether it contains /v2.0/ for example:

https://login.microsoftonline.com/common/oauth2/authorize is v1 whereas https://login.microsoftonline.com/common/oauth2/v2.0/authorize is v2

EDIT - Including extra data points provided by Daniel

The version of your Azure AD application depends on what portal was used to register it,

  • If in the Azure Portal, then it's a v1 application.
  • If in the App Registration Portal then it's a v2 app.
like image 134
Saca Avatar answered Sep 21 '22 18:09

Saca