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. Many millions of organizations depend on Azure Active Directory and the APIs that the tool connects to. Now, there is a new endpoint Public Preview.
I’ve shown you how to enable Azure AD Connect’s v2 Endpoint previously, but today I’m sharing my Windows PowerShell one-liner to tell if Azure AD Connect is using it or not.
How to tell
Run the following line of Windows PowerShell in an elevated Windows PowerShell window on the Windows Server with Azure AD Connect version 1.5.30.0, or above, that you’d want to know of if it uses the v2 Endpoint:
(Get-ADSyncGlobalSettingsParameter | Where-Object { $_.Name -eq 'Microsoft.Version.SynchronizationRuleImmutableTag'}).Value
The output of the above line of Windows PowerShell is one of the below two values, indicating the version of the Azure AD Connect endpoint:
- V1
- V2
The post HOWTO Tell if Azure AD Connect is using the v2 Endpoint appeared first on The things that are better left unspoken.