diff --git a/functions/private/Set-WinUtilRegistry.ps1 b/functions/private/Set-WinUtilRegistry.ps1 index 397ce84c1c..d2141800c1 100644 --- a/functions/private/Set-WinUtilRegistry.ps1 +++ b/functions/private/Set-WinUtilRegistry.ps1 @@ -36,7 +36,7 @@ function Set-WinUtilRegistry { } Write-Host "Set $Path\$Name to $Value" - if ($Value -ne ""){ + if ($Value -ne "") { Set-ItemProperty -Path $Path -Name $Name -Type $Type -Value $Value -Force -ErrorAction Stop | Out-Null } else{