Add a function for removing the RunOnce
key
This commit is contained in:
parent
3ad0fcf95e
commit
6dba078a44
|
@ -96,6 +96,21 @@ $null = New-Module {
|
|||
$key.Handle.Close();
|
||||
}
|
||||
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Clears leftovers from past registrations.
|
||||
#>
|
||||
function Clear-SetupRegistration {
|
||||
Edit-DefaultUserKey {
|
||||
param(
|
||||
[RegistryKey] $Key
|
||||
)
|
||||
|
||||
$runOnceKey = Get-RunOnceKey $Key;
|
||||
Remove-Item $runOnceKey.PSPath;
|
||||
}
|
||||
}
|
||||
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Sets the user to login automatically on boot.
|
||||
|
|
Loading…
Reference in a new issue