Register MSAcc logon script early

This commit is contained in:
Manuel Thalmann 2024-08-27 03:24:37 +02:00
parent 606ef88622
commit 4f3a7aff4b
2 changed files with 1 additions and 1 deletions

View file

@ -216,7 +216,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

@ -89,6 +89,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;