From 2b1b9cb449c1f9dbe1e519bd746ad9b3f312f5a9 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 28 Jun 2023 22:06:46 +0200 Subject: [PATCH] Add missing semicolon --- scripts/Windows/OS/User.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Windows/OS/User.ps1 b/scripts/Windows/OS/User.ps1 index adba09e9..c0554eae 100644 --- a/scripts/Windows/OS/User.ps1 +++ b/scripts/Windows/OS/User.ps1 @@ -42,7 +42,7 @@ function New-PersonalUser([Context] $context) } function Enable-UACNextLogin() { - $taskName = "PortValhalla" + $taskName = "PortValhalla"; $keyPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System"; $propertyName = "EnableLUA"; $null = Set-ItemProperty "$keyPath" -Name "$propertyName" -Value 1;