icinga-powershell-framework/lib/core/windows/Stop-IcingaWindowsService.psm1
2021-09-02 09:23:10 +02:00

10 lines
247 B
PowerShell

function Stop-IcingaWindowsService()
{
[string]$JeaPid = Get-IcingaJEAServicePid;
Stop-IcingaService -Service 'icingapowershell';
if ((Test-IcingaJEAServiceRunning -JeaPid $JeaPid)) {
Stop-Process -Id $JeaPid -Force;
}
}