diff --git a/scripts/Windows/Scripts/SetupConfig.ps1 b/scripts/Windows/Scripts/SetupConfig.ps1
index 5382304b..e32e2640 100644
--- a/scripts/Windows/Scripts/SetupConfig.ps1
+++ b/scripts/Windows/Scripts/SetupConfig.ps1
@@ -75,12 +75,8 @@ $null = New-Module {
             $Value
         )
 
-        if ($Value -is [string]) {
-
-        }
-
         $key = Get-SetupConfigKey;
-        return $key.SetValue($Value);
+        $null = Set-ItemProperty ($key.PSPath) -Name $Name -Value $Value;
     }
 
     <#