Remove unnecessary statement

This commit is contained in:
Manuel Thalmann 2023-06-28 13:43:20 +02:00
parent 50b8511e9e
commit 27813bd1e9

View file

@ -108,7 +108,7 @@ class Context {
[void] RegisterReboot([Microsoft.Win32.RegistryKey] $userKey) { [void] RegisterReboot([Microsoft.Win32.RegistryKey] $userKey) {
$runOnceKey = $this.GetRunOnceKey($userKey); $runOnceKey = $this.GetRunOnceKey($userKey);
$null = Set-ItemProperty -Path $runOnceKey.PSPath -Name $this.RunOnceName -Value "pwsh `"$($this.EntryPoint)`"" -Type "ExpandString"; Set-ItemProperty -Path $runOnceKey.PSPath -Name $this.RunOnceName -Value "pwsh `"$($this.EntryPoint)`"" -Type "ExpandString";
$runOnceKey.Handle.Close(); $runOnceKey.Handle.Close();
} }