Register MSAcc logon script early

This commit is contained in:
Manuel Thalmann 2024-08-27 03:24:37 +02:00
parent 94f5657ea7
commit 2afaff1999
2 changed files with 1 additions and 1 deletions

View file

@ -213,7 +213,6 @@ $null = New-Module {
switch (Get-OneShotTask) { switch (Get-OneShotTask) {
([OneShotTask]::InitializeMSAccount) { ([OneShotTask]::InitializeMSAccount) {
Initialize-UserCreation; Initialize-UserCreation;
Register-Setup -DefaultUser;
} }
([OneShotTask]::DisableUAC) { ([OneShotTask]::DisableUAC) {
Disable-UAC; Disable-UAC;

View file

@ -88,6 +88,7 @@ $null = New-Module {
if ($msAccount) { if ($msAccount) {
if (Test-Admin) { if (Test-Admin) {
Write-Host "Preparing environment for creating MS Account"; Write-Host "Preparing environment for creating MS Account";
Register-Setup -DefaultUser;
Enable-OneShotListener; Enable-OneShotListener;
Enable-UAC; Enable-UAC;
Restart-Intermediate -CurrentUser; Restart-Intermediate -CurrentUser;