lib/core/framework/Start-IcingaService.psm1

function Start-IcingaService()
{
    param(
        $Service
    );

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