Fix broken regedit paths

This commit is contained in:
Manuel Thalmann 2024-08-19 01:38:25 +02:00
parent 0345ae5a72
commit 3f1eeba9dc

View file

@ -26,7 +26,7 @@ $null = New-Module {
[string] $path = $null; [string] $path = $null;
if ($UserKey) { if ($UserKey) {
$path = "$($UserKey.PSPath)\$runOncePath"; $path = Join-Path ($UserKey.PSPath) $runOncePath;
} else { } else {
$path = $systemRunOncePath; $path = $systemRunOncePath;
} }