Register MSAcc logon script early
This commit is contained in:
parent
e1b6038f4c
commit
4a4f8eeab7
2 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue