Make the script start for all new users
This commit is contained in:
parent
95981f4d3c
commit
0ba664eb51
1 changed files with 5 additions and 1 deletions
|
@ -28,8 +28,12 @@ function New-PersonalUser([Context] $context)
|
|||
}
|
||||
}
|
||||
|
||||
Write-Information "Renaming the new User to $($context.UserName)";
|
||||
Rename-LocalUser $user $context.UserName;
|
||||
Add-LocalGroupMember -Group "Administrators" -Member $user && Set-LocalUser $context.AdminName -Password (ConvertTo-SecureString -AsPlainText "Admin");
|
||||
$context.Reboot();
|
||||
|
||||
Write-Host "Registering setup script for all new users";
|
||||
$context.RegisterNewUserReboot();
|
||||
Register-Reboot;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue