icinga-powershell-framework/lib/core/framework/Start-IcingaService.psm1
2019-10-31 14:32:19 +01:00

10 lines
171 B
PowerShell

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