From 864dd521cf7312da9e8ce56918ccaef3f7ab1f4b Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 9 Aug 2024 14:45:29 +0200 Subject: [PATCH] Allow automatic script execution for MS accounts --- scripts/Windows/OS/Install.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1 index 229a843e..5f028bd0 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -3,6 +3,7 @@ using namespace System.Security.Principal; . "$PSScriptRoot/../../../scripts/Windows/Scripts/Prerequisites.ps1"; . "$PSScriptRoot/../../Common/Scripts/Context.ps1"; +. "$PSScriptRoot/../Scripts/Security.ps1"; . "$PSScriptRoot/../Software/Firefox/Install.ps1"; . "$PSScriptRoot/Manage.ps1"; . "$PSScriptRoot/User/Install.ps1"; @@ -464,13 +465,14 @@ $null = New-Module { Enable-LocalUser $user; if (Get-UserConfig -UserName "$user" -Name "microsoftAccount") { + Enable-UAC; Disable-Autologin; Set-BootMessage -Caption "Login" -Message "Please login using your account."; } else { Set-AutologinUser "$user"; } - Restart-Intermediate + Restart-Intermediate -DefaultUser; return; }