This commit is contained in:
Manuel Thalmann 2024-08-09 03:38:10 +02:00
parent e55e6a5a5a
commit 135cd8e218

View file

@ -41,7 +41,7 @@ $null = New-Module {
foreach ($key in $options.Keys) { foreach ($key in $options.Keys) {
Set-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" ` Set-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" `
-Name $key ` -Name $key `
-Type "String" -Type "String" `
-Value ($options[$key]); -Value ($options[$key]);
} }
} }