mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2026-02-03 04:09:29 -05:00
6 lines
191 B
PowerShell
6 lines
191 B
PowerShell
function Test-IcingaForWindowsManagementConsoleUpdating()
|
|
{
|
|
$UpdateFile = Join-Path -Path (Get-IcingaCacheDir) -ChildPath 'framework.update';
|
|
|
|
return (Test-Path -Path $UpdateFile);
|
|
}
|