From 36cfa519ed8237b3f931979fdec3f2cd60d52478 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 15 Jul 2023 21:40:14 +0200 Subject: [PATCH] Reboot after installing drivers --- scripts/Windows/OS/Install.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1 index e9a60515..59b74770 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -34,6 +34,8 @@ function Invoke-WindowsInstallation([Context] $context) Write-Information "Finished installing drivers"; $context.Set("DriversInstalled", 1); + $context.Reboot(); + exit; } New-PersonalUser $context;