function Start-IcingaService() { param( $Service ); if (Get-Service $Service -ErrorAction SilentlyContinue) { Start-Service $Service; } }