Try fixing UAC properly

This commit is contained in:
Manuel Thalmann 2023-06-29 01:51:30 +02:00
parent cbb3d329f9
commit 0f203caaa7

View file

@ -34,11 +34,8 @@ function New-PersonalUser([Context] $context)
Rename-LocalUser $user $context.UserName;
Add-LocalGroupMember -Group "Administrators" -Member $user && Set-LocalUser $context.AdminName -Password (ConvertTo-SecureString -AsPlainText "Admin") && Disable-LocalUser $context.AdminName;
Write-Host "Registering setup script for all new users";
$context.RegisterNewUserReboot();
Write-Information "Enabling UAC for the next login (Microsoft Account login won't work otherwise, lol)";
Enable-UACNextLogin;
Enable-UACNextLogin $context;
Write-Information "Disabling Auto login";
$context.RemoveAutologin();
@ -70,33 +67,40 @@ function New-PersonalUser([Context] $context)
}
}
function Enable-UACNextLogin() {
function Get-SystemPolicyKey() {
[OutputType([Microsoft.Win32.RegistryKey])]
param()
$keyPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System";
$propertyName = "EnableLUA";
$null = Set-ItemProperty "$keyPath" -Name "$propertyName" -Value 1;
return Get-Item "$keyPath";
}
function Get-UACState() {
return Get-ItemPropertyValue -Path (Get-SystemPolicyKey).PSPath -Name "EnableLUA";
}
function Set-UACState([bool] $value) {
$null = Set-ItemProperty -Path (Get-SystemPolicyKey).PSPath -Name "EnableLUA" -Value [int]$value;
}
function Enable-UACNextLogin([Context] $context) {
Set-UACState $true;
$action = New-ScheduledTaskAction -Execute "pwsh.exe" -Argument (
[string]::Join(
" ",
@(
"-c",
"Set-ItemProperty `"$keyPath`" -Name `"$propertyName`" -Value 0;")));
"Set-ItemProperty `"$keyPath`" -Name `"$propertyName`" -Value 0;",
"Unregister-ScheduledTask -Force $uacDisablerName;",
". `"$PSScriptRoot/../Scripts/Context.ps1`";",
"`$context = [Context]::new();",
"`$context.EntryPoint = `"$($context.EntryPoint)`";",
"`$context.RegisterReboot((Get-Item `"Registry::HKEY_USERS\$((Get-LocalUser $context.UserName).SID)))")));
$trigger = New-ScheduledTaskTrigger -AtLogOn;
$principal = New-ScheduledTaskPrincipal -UserId "SYSTEM" -RunLevel Highest;
$task = New-ScheduledTask -Action $action -Principal $principal -Trigger $trigger;
$null = Register-ScheduledTask $uacDisablerName -InputObject $task;
$action = New-ScheduledTaskAction -Execute "pwsh.exe" -Argument (
[string]::Join(
" ",
@(
"-c",
"Unregister-ScheduledTask -Force $uacDisablerName;",
"Unregister-ScheduledTask -Force $cleanupName;")));
$task = New-ScheduledTask -Action $action -Principal $principal;
$null = Register-ScheduledTask $cleanupName -InputObject $task;
}
function Enable-CurrentUserAutologon([Context] $context)