lib/core/windows/Stop-IcingaWindowsService.psm1
function Stop-IcingaWindowsService() { [string]$JeaPid = Get-IcingaJEAServicePid; Stop-IcingaService -Service 'icingapowershell'; if ((Test-IcingaJEAServiceRunning -JeaPid $JeaPid)) { Stop-Process -Id $JeaPid -Force; } } |