Ensure auto reboot is disabled properly

This commit is contained in:
Manuel Thalmann 2024-08-12 01:27:58 +02:00
parent 36a070bdd7
commit 5f6b9c05bb

View file

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