lib/core/icingaagent/getters/Get-IcingaServiceUser.psm1

function Get-IcingaServiceUser()
{
    $Services = Get-IcingaServices -Service 'icinga2';
    if ($null -eq $Services) {
        throw 'Icinga Service not installed';
    }

    $Services    = $Services.GetEnumerator() | Select-Object -First 1;
    return ($Services.Value.configuration.ServiceUser).Replace('.\', '');
}