Register installer script after disabling UAG

This commit is contained in:
Manuel Thalmann 2024-08-10 15:16:27 +02:00
parent 8268fdd29d
commit 9ad16b14fc

View file

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