$AllServices=Get-Service
foreach ($SVC in $AllServices) { if ( $SVC.status -eq "Stopped" ) { Write-Host $SVC.Name, $SVC.status -ForegroundColor Red} else {Write-Host $SVC.name, $SVC.status -ForegroundColor Cyan}}
$AllServices=Get-Service
foreach ($SVC in $AllServices) { if ( $SVC.status -eq "Stopped" ) { Write-Host $SVC.Name, $SVC.status -ForegroundColor Red} else {Write-Host $SVC.name, $SVC.status -ForegroundColor Cyan}}