PortValhalla/scripts/Windows/Scripts/Users.ps1

166 lines
5.8 KiB
PowerShell
Raw Normal View History

2024-08-08 15:49:43 +00:00
using namespace System.Management.Automation.Host;
2024-08-21 16:34:18 +00:00
using namespace System.Security.Principal;
2024-08-08 15:49:43 +00:00
$null = New-Module {
. "$PSScriptRoot/../../Common/Scripts/Config.ps1";
2024-08-21 16:34:18 +00:00
. "$PSScriptRoot/../../Common/Scripts/Operations.ps1";
$loggedInUserOption = "LoggedInUser";
2024-08-08 15:49:43 +00:00
<#
.SYNOPSIS
2024-08-21 16:34:18 +00:00
Creates a new user for the PortValhalla setup.
.PARAMETER Name
The name of the user to create.
.PARAMETER MSAccount
A value indicating whether the user should be created as a Microsoft Account.
2024-08-08 15:49:43 +00:00
#>
2024-08-21 16:34:18 +00:00
function New-ValhallaUser {
param(
[string] $Name,
[switch] $MSAccount
2024-08-21 16:34:18 +00:00
)
2024-08-08 15:49:43 +00:00
function Add-MicrosoftAccount {
param(
[string] $Name
)
$newUser = & {
while ($true) {
$currentUsers = Get-LocalUser | ForEach-Object { $_.Name };
Write-Host (
@(
"So… Windows is too dumb to create users which are bound to a Microsoft Account.",
"Thus, you have to do it by yourself.",
"So sorry…") -join "`n");
2024-08-21 16:34:18 +00:00
Write-Host "Create a user for ``$Name`` manually… (because Windows is too stupid)";
2024-08-09 00:20:27 +00:00
$null = Read-Host "Hit enter once you're done";
2024-08-08 15:49:43 +00:00
$newUsers = @(Get-LocalUser | Where-Object { -not ($currentUsers -contains $_.Name) });
if ($newUsers.Count) {
if ($newUsers.Count -eq 1) {
$newUser = $newUsers[0];
Write-Host "Found new user ``$newUser``";
if (
$Host.UI.PromptForChoice(
"Confirm",
"Is ``$newUser`` your user?",
[ChoiceDescription[]]@(
[ChoiceDescription]::new("&No", "``$newUser`` is not your user"),
[ChoiceDescription]::new("&Yes", "``$newUser`` is your user")),
0) -eq 1) {
return $newUser;
}
} else {
$result = $Host.UI.PromptForChoice(
"Select your User",
"Which one is your user?",
[ChoiceDescription[]](
& {
[ChoiceDescription]::new("&None", "None of these users is yours");
2024-08-21 16:34:18 +00:00
2024-08-08 15:49:43 +00:00
for ($i = 0; $i -lt $newUsers.Count; $i++) {
$name = "$($newUsers[$i])";
[ChoiceDescription]::new("&$($i + 1) - ``$name``", "Your user is ``$name``");
}
}), 0);
if ($result -gt 0) {
return $newUsers[$result - 1];
}
}
2024-08-09 00:00:18 +00:00
} else {
Write-Host "";
2024-08-08 15:49:43 +00:00
Write-Host "Unable to determine the new user";
Write-Host "Retrying…";
}
}
};
2024-08-21 16:34:18 +00:00
Set-MSAccountName ([string]$newUser);
2024-08-08 15:49:43 +00:00
}
if ($MSAccount) {
2024-08-21 16:34:18 +00:00
if (Test-Admin) {
Write-Host "Preparing environment for creating MS Account";
2024-08-27 01:24:37 +00:00
Register-Setup -DefaultUser;
2024-08-21 16:34:18 +00:00
Enable-OneShotListener;
Enable-UAC;
# Reset Windows activation status
# Otherwise the login won't work - Windows is fricking frustrating.
slmgr /upk;
slmgr /cpky;
slmgr /rearm;
2024-08-21 16:34:18 +00:00
Restart-Intermediate -CurrentUser;
exit;
2024-08-09 02:20:00 +00:00
}
2024-08-21 16:34:18 +00:00
}
2024-08-08 15:49:43 +00:00
2024-08-21 16:34:18 +00:00
Write-Host "Creating personal user ``$Name``";
if ($MSAccount) {
2024-08-21 16:34:18 +00:00
Add-MicrosoftAccount $Name;
Set-SetupOption $loggedInUserOption $env:UserName;
Invoke-OneShot ([OneShotTask]::InitializeMSAccount);
} else {
New-LocalUser -NoPassword $Name;
Set-LocalUser $Name -PasswordNeverExpires $true;
Set-LocalUser $Name -PasswordNeverExpires $false;
Initialize-UserCreation;
}
}
<#
.SYNOPSIS
Prepares the first login for initializing the current user under configuration.
#>
function Initialize-UserCreation {
$name = (@(Get-Users))[(Get-CurrentUser)];
$msAccount = Get-UserConfig -UserName $name "microsoftAccount";
Write-Host "Initializing user ``$name``";
$userArguments = @{
name = $name;
};
$adminGroup = @{
SID = [SecurityIdentifier]::new([WellKnownSidType]::BuiltinAdministratorsSid, $null);
};
if ($msAccount) {
$accountName = Get-MSAccountName;
Write-Host "Renaming ``$accountName`` to ``$name``"
Rename-LocalUser $accountName $name;
}
Set-LocalUser @userArguments;
if ($msAccount) {
Disable-LocalUser (Get-SetupOption $loggedInUserOption);
} else {
Disable-LocalUser $env:UserName;
}
Add-LocalGroupMember `
@adminGroup `
$name `
-ErrorAction SilentlyContinue;
2024-08-09 02:20:00 +00:00
2024-08-21 16:34:18 +00:00
if ($msAccount) {
Disable-Autologin;
Set-BootMessage -Caption "Please Log In" -Message "Please log in using your new Microsoft Account ``$name``.";
} else {
Set-AutologinUser "$name";
2024-08-08 15:49:43 +00:00
}
}
};