mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
11 lines
237 B
PowerShell
11 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 '';
|
||
|
|
}
|