Forum Discussion
Cloud_Geek_82
Nov 07, 2024Tin Contributor
Find out a server with Azure AD Connect
Hi All, Normally, if someone need to find on which server Azure AD Connect is installed it can be done in Azure portal under Microsoft Entra Connect - Microsoft Entra Connect Health - Sync Services....
swagatam
Aug 20, 2026MCT
Yes. Even if Microsoft Entra Connect Health is not installed or its service is stopped, you can identify the server running Azure AD Connect (Entra Connect Sync) using PowerShell or Active Directory.
Get-ADComputer -Filter * | ForEach-Object {
try {
$s = Get-Service -ComputerName $_.Name -Name ADSync -ErrorAction SilentlyContinue
if ($s) {
"$($_.Name) --> Azure AD Connect: $($s.Status)"
}
} catch {}
}