Login to users for configuration
This commit is contained in:
parent
c79d632639
commit
cb2735b909
|
@ -155,6 +155,16 @@ $null = New-Module {
|
||||||
Get-Attributes "valhalla.windows.users";
|
Get-Attributes "valhalla.windows.users";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Gets the name of the setup user.
|
||||||
|
#>
|
||||||
|
function Get-SetupUser {
|
||||||
|
[OutputType([string])]
|
||||||
|
param()
|
||||||
|
Get-Config "valhalla.windows.setupUser";
|
||||||
|
}
|
||||||
|
|
||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Gets the value of an option related to the setup.
|
Gets the value of an option related to the setup.
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/bin/pwsh
|
#!/bin/pwsh
|
||||||
|
using namespace System.Security.Principal;
|
||||||
|
|
||||||
. "$PSScriptRoot/../Scripts/Prerequisites.ps1";
|
. "$PSScriptRoot/../Scripts/Prerequisites.ps1";
|
||||||
|
|
||||||
. "$PSScriptRoot/Manage.ps1";
|
. "$PSScriptRoot/Manage.ps1";
|
||||||
|
@ -9,6 +11,7 @@
|
||||||
$null = New-Module {
|
$null = New-Module {
|
||||||
. "$PSScriptRoot/../Scripts/Hooks.ps1";
|
. "$PSScriptRoot/../Scripts/Hooks.ps1";
|
||||||
. "$PSScriptRoot/../Scripts/PowerManagement.ps1";
|
. "$PSScriptRoot/../Scripts/PowerManagement.ps1";
|
||||||
|
. "$PSScriptRoot/../Scripts/Registry.ps1";
|
||||||
. "$PSScriptRoot/../Scripts/Update.ps1";
|
. "$PSScriptRoot/../Scripts/Update.ps1";
|
||||||
. "$PSScriptRoot/../Scripts/Users.ps1";
|
. "$PSScriptRoot/../Scripts/Users.ps1";
|
||||||
. "$PSScriptRoot/../../Common/Scripts/Config.ps1";
|
. "$PSScriptRoot/../../Common/Scripts/Config.ps1";
|
||||||
|
@ -429,6 +432,49 @@ $null = New-Module {
|
||||||
Set-Stage ([SetupStage]::ConfigureUser);
|
Set-Stage ([SetupStage]::ConfigureUser);
|
||||||
}
|
}
|
||||||
([SetupStage]::ConfigureUser) {
|
([SetupStage]::ConfigureUser) {
|
||||||
|
$userOption = "CurrentUser";
|
||||||
|
|
||||||
|
function Get-CurrentUser {
|
||||||
|
(Get-SetupOption $userOption) ?? 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function Set-CurrentUser {
|
||||||
|
param([int] $Value)
|
||||||
|
Set-SetupOption $userOption $Value;
|
||||||
|
}
|
||||||
|
|
||||||
|
[string[]] $users = Get-Users;
|
||||||
|
$currentUser = Get-CurrentUser;
|
||||||
|
Set-BootMessage;
|
||||||
|
|
||||||
|
if ($currentUser -lt $users.Count) {
|
||||||
|
$user = Get-LocalUser $users[$currentUser];
|
||||||
|
|
||||||
|
Add-LocalGroupMember `
|
||||||
|
-SID ([SecurityIdentifier]::new([WellKnownSidType]::BuiltinAdministratorsSid, $null))`
|
||||||
|
$user `
|
||||||
|
-ErrorAction SilentlyContinue;
|
||||||
|
|
||||||
|
if ($env:UserName -ne "$user") {
|
||||||
|
Disable-LocalUser $env:UserName;
|
||||||
|
Enable-LocalUser $user;
|
||||||
|
|
||||||
|
if (Get-UserConfig -UserName "$user" -Name "microsoftAccount") {
|
||||||
|
Disable-Autologin;
|
||||||
|
Set-BootMessage -Caption "Login" -Message "Please login using your account.";
|
||||||
|
} else {
|
||||||
|
Set-AutologinUser "$user";
|
||||||
|
}
|
||||||
|
|
||||||
|
Restart-Intermediate
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (-not (Get-UserConfig -UserName "$user" "microsoftAccount")) {
|
||||||
|
net user "$user" /logonpasswordchg:yes;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Set-IsFinished $true;
|
Set-IsFinished $true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,16 @@
|
||||||
using namespace Microsoft.Win32;
|
using namespace Microsoft.Win32;
|
||||||
|
|
||||||
$null = New-Module {
|
$null = New-Module {
|
||||||
|
. "$PSScriptRoot/../../Common/Scripts/Config.ps1";
|
||||||
. "$PSScriptRoot/../../Common/Scripts/Scripting.ps1";
|
. "$PSScriptRoot/../../Common/Scripts/Scripting.ps1";
|
||||||
[RegistryKey] $key = $null;
|
[RegistryKey] $key = $null;
|
||||||
$runOncePath = "HKLM:\Software\Microsoft\Windows\CurrentVersion\RunOnce";
|
$runOncePath = "HKLM:\Software\Microsoft\Windows\CurrentVersion\RunOnce";
|
||||||
|
$logonPath = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
|
||||||
$runOnceName = "PortValhalla";
|
$runOnceName = "PortValhalla";
|
||||||
|
$autologinOption = "AutoAdminLogon";
|
||||||
|
$domainOption = "DefaultDomainName";
|
||||||
|
$userOption = "DefaultUserName";
|
||||||
|
$passwordOption = "DefaultPassword";
|
||||||
|
|
||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
|
@ -45,6 +51,56 @@ $null = New-Module {
|
||||||
$key.Handle.Close();
|
$key.Handle.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Sets the user to login automatically on boot.
|
||||||
|
|
||||||
|
.PARAMETER Name
|
||||||
|
The name of the user to login automatically.
|
||||||
|
#>
|
||||||
|
function Set-AutologinUser {
|
||||||
|
param(
|
||||||
|
[string] $Name
|
||||||
|
)
|
||||||
|
|
||||||
|
Set-ItemProperty $autologinOption -Name $autologinOption "1";
|
||||||
|
|
||||||
|
if (-not $Name) {
|
||||||
|
$Name = Get-SetupUser;
|
||||||
|
}
|
||||||
|
|
||||||
|
$options = @{
|
||||||
|
$domainOption = "";
|
||||||
|
$userOption = $Name;
|
||||||
|
$passwordOption = "";
|
||||||
|
};
|
||||||
|
|
||||||
|
foreach ($key in $options.Keys) {
|
||||||
|
Set-ItemProperty -Name $key
|
||||||
|
$displayName = Get-UserConfig -UserName $name "displayName";
|
||||||
|
|
||||||
|
$userArguments = @{
|
||||||
|
name = $name;
|
||||||
|
};
|
||||||
|
|
||||||
|
if ($displayName) {
|
||||||
|
$userArguments.fullName = $displayName;
|
||||||
|
} -Value $options[$key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Disables the automatic login.
|
||||||
|
#>
|
||||||
|
function Disable-Autologin {
|
||||||
|
Set-ItemProperty $logonPath -Name $autologinOption "0";
|
||||||
|
|
||||||
|
foreach ($key in @($domainOption, $userOption, $passwordOption)) {
|
||||||
|
Remove-ItemProperty $logonPath -Name $key -ErrorAction SilentlyContinue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Reboots the machine intermediately and restarts the setup after the next login.
|
Reboots the machine intermediately and restarts the setup after the next login.
|
||||||
|
|
|
@ -101,10 +101,6 @@ $null = New-Module {
|
||||||
Set-LocalUser $name -PasswordNeverExpires $true;
|
Set-LocalUser $name -PasswordNeverExpires $true;
|
||||||
Set-LocalUser $name -PasswordNeverExpires $false;
|
Set-LocalUser $name -PasswordNeverExpires $false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (-not (Get-UserConfig -UserName $name "microsoftAccount")) {
|
|
||||||
net user $name /logonpasswordchg:yes;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue