Wanted to share this with you .. get the Service Health or all you Exchange 2010 Servers
Get-ExchangeServer | where {$_.AdminDisplayVersion.Major -eq 14 –AND $_.IsProvisionedServer -eq $False} | ForEach{$s = $_.Name; “`n$s”; Test-Servicehealth $s | Select Role, RequiredServicesRunning | FT -auto}