Via Powershell kann bequem abgefragt werden wo Azure AD Connect (AADC) installiert ist, hier einmal die passenden Powershell Schnipsel:
Für die Systemsprache Deutsch:
Get-ADUser -LDAPFilter "(description=*und zur Synchronisierung mit Mandant*)" -Properties description | % { $_.description.SubString(47, $_.description.IndexOf(" ", 48) - 48)}
Für die Systemsprache Englisch:
Get-ADUser -LDAPFilter "(description=*configured to synchronize to tenant*)" -Properties description | % { $_.description.SubString(142, $_.description.IndexOf(" ", 142) - 142)}