From 93bad7fc7306066c6f7ba83344909c154e2307df Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 10 Aug 2024 15:16:27 +0200 Subject: [PATCH] Register installer script after disabling UAG --- scripts/Windows/OS/Install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1 index 0a02915c..075f3bef 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -141,6 +141,7 @@ $null = New-Module { switch (Get-OneShotTask) { ([OneShotTask]::DisableUAC) { Disable-UAC; + Register-Setup; } } };