From 950e6dc761c562b1becb78131739af709e2ba781 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 9 Aug 2024 04:42:55 +0200 Subject: [PATCH] Force computer reboots --- scripts/Windows/Scripts/PowerManagement.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Windows/Scripts/PowerManagement.ps1 b/scripts/Windows/Scripts/PowerManagement.ps1 index 74b4b5a6..59b262aa 100644 --- a/scripts/Windows/Scripts/PowerManagement.ps1 +++ b/scripts/Windows/Scripts/PowerManagement.ps1 @@ -107,6 +107,6 @@ $null = New-Module { #> function Restart-Intermediate { Register-Setup; - Restart-Computer; + Restart-Computer -Force; } }