Register installer script after disabling UAG

This commit is contained in:
Manuel Thalmann 2024-08-10 15:16:27 +02:00
parent 09984cff8e
commit ef56c3ab4b

View file

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