From cefbe9846ffab89d94dd8b07159d6c79954f89f1 Mon Sep 17 00:00:00 2001 From: Stanley Goodwin <67250149+ThermalDynamicality@users.noreply.github.com> Date: Thu, 29 Sep 2022 13:05:15 -0400 Subject: [PATCH] Formatting Changed a small bit of formatting --- create.ps1 | 10 +++++----- remove.ps1 | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/create.ps1 b/create.ps1 index b9d3f1a..bbab3f8 100644 --- a/create.ps1 +++ b/create.ps1 @@ -30,11 +30,11 @@ ELSE { # Add custom keys to registry $regeditparams = @{ - FilePath = "$Env:SystemRoot\REGEDIT.exe" - ArgumentList = "/s", "$(Get-Location)\create.reg" - Verb = "RunAs" - PassThru = $true - Wait = $true + FilePath = "$Env:SystemRoot\REGEDIT.exe" + ArgumentList = "/s", "$(Get-Location)\create.reg" + Verb = "RunAs" + PassThru = $true + Wait = $true } $addkeys = Start-Process @regeditparams if ($addkeys.ExitCode -eq 0) { "Successfully added keys to registry!" } diff --git a/remove.ps1 b/remove.ps1 index 420001c..e3e344d 100644 --- a/remove.ps1 +++ b/remove.ps1 @@ -7,11 +7,11 @@ # Remove custom keys from registry $regeditparams = @{ - FilePath = "$Env:SystemRoot\REGEDIT.exe" - ArgumentList = "/s", "$(Get-Location)\remove.reg" - Verb = "RunAs" - PassThru = $true - Wait = $true + FilePath = "$Env:SystemRoot\REGEDIT.exe" + ArgumentList = "/s", "$(Get-Location)\remove.reg" + Verb = "RunAs" + PassThru = $true + Wait = $true } $removekeys = Start-Process @regeditparams if ($removekeys.ExitCode -eq 0) { "Successfully removed keys from registry!" }