From 64611ab9283a82b22ab0700eb3ac04ee79a30487 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 22 Aug 2024 20:41:17 +0200 Subject: [PATCH] Fix infinite loop --- 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 e6bf806a..1658f41e 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -608,6 +608,8 @@ $null = New-Module { if (-not $msAccount) { net user $name /logonpasswordchg:yes; } + + Set-UserStage ([UserStage]::Completed); } } }