Register installer script after disabling UAG

This commit is contained in:
Manuel Thalmann 2024-08-10 15:16:27 +02:00
parent b630f3da24
commit 93bad7fc73

View file

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