icinga-powershell-framework/lib/core/jea/Get-IcingaJEASessionFile.psm1
2021-09-02 09:23:10 +02:00

10 lines
237 B
PowerShell

function Get-IcingaJEASessionFile()
{
[string]$Path = Join-Path -Path (Get-IcingaFrameworkRootPath) -ChildPath 'RoleCapabilities\IcingaForWindows.psrc';
if (Test-Path -Path $Path) {
return $Path;
}
return '';
}