Register installer script after disabling UAG

This commit is contained in:
Manuel Thalmann 2024-08-10 15:16:27 +02:00
parent 5c302fe4be
commit 463f2ad4f4

View file

@ -141,6 +141,7 @@ $null = New-Module {
switch (Get-OneShotTask) { switch (Get-OneShotTask) {
([OneShotTask]::DisableUAC) { ([OneShotTask]::DisableUAC) {
Disable-UAC; Disable-UAC;
Register-Setup;
} }
} }
}; };