Ensure auto reboot is disabled properly

This commit is contained in:
Manuel Thalmann 2024-08-12 21:32:53 +02:00
parent 513cedee3f
commit 03de3b3bdf

View file

@ -61,9 +61,12 @@ $null = New-Module {
Disables automatic reboots by Windows Update. Disables automatic reboots by Windows Update.
#> #>
function Disable-WindowsUpdateAutoRestart { function Disable-WindowsUpdateAutoRestart {
Set-ItemProperty "$wuPolicyPath\AU" ` $path = "$wuPolicyPath\AU";
$null = New-Item -Force $path -ErrorAction SilentlyContinue;
Set-ItemProperty $path `
-Name NoAutoRebootWithLoggedOnUsers ` -Name NoAutoRebootWithLoggedOnUsers `
-Value $Value; -Value 1;
} }
<# <#