Register installer script after disabling UAG

This commit is contained in:
Manuel Thalmann 2024-08-10 15:16:27 +02:00
parent 218b7c70db
commit 9ed8ecf4b0

View file

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