From f74f7066e037f57d58e82ba095d278d3287b63fe Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 9 Aug 2024 02:27:24 +0200 Subject: [PATCH] Add a stage for configuring users --- scripts/Windows/OS/Install.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1 index 20ccce95..b2726a14 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -425,6 +425,9 @@ $null = New-Module { } ([SetupStage]::CreateUser) { Start-ValhallaUserSetup; + Set-Stage ([SetupStage]::ConfigureUser); + } + ([SetupStage]::ConfigureUser) { Set-IsFinished $true; } }