icinga-powershell-framework/lib/core/installer/tools/SetUpdatingIMC.psm1

18 lines
514 B
PowerShell
Raw Permalink Normal View History

function Set-IcingaForWindowsManagementConsoleUpdating()
{
param (
[switch]$Completed = $FALSE
);
Set-IcingaForWindowsManagementConsoleClosing;
$UpdateFile = Join-Path -Path (Get-IcingaCacheDir) -ChildPath 'framework.update';
if ($Completed) {
2022-08-26 09:36:52 -04:00
if (Test-IcingaForWindowsManagementConsoleUpdating) {
Remove-ItemSecure -Path $UpdateFile -Force -Retries 5 | Out-Null;
}
} else {
New-Item -Path $UpdateFile -ItemType File -Force | Out-Null;
}
}