From 5dc54a39632f5365461f88cafed0dff82da4ab46 Mon Sep 17 00:00:00 2001
From: Carterpersall <carterpersall@gmail.com>
Date: Fri, 13 May 2022 09:46:50 -0500
Subject: [PATCH] Fix Issue in #2

 - Fixes issue listed in issue #2
   - Closes #2
   - Changing the PowerThrottlingOff key previously errored as the directory PowerThrottling does not exist by default
     - Fixed by adding a check for the PowerThrottling directory, and if it does not exist it creates it
---
 winutil.ps1 | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/winutil.ps1 b/winutil.ps1
index 0ea7c47e..2e59e8a1 100644
--- a/winutil.ps1
+++ b/winutil.ps1
@@ -1036,6 +1036,7 @@ $WPFtweaksbutton.Add_Click({
         $WPFEssTweaksWifi.IsChecked = $false
     }
     If ( $WPFMiscTweaksLapPower.IsChecked -eq $true ) {
+        If(!(Test-Path "HKCU:\SYSTEM\CurrentControlSet\Control\Power\PowerThrottling")){New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Power" -Name "PowerThrottling"}
         Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Power\PowerThrottling" -Name "PowerThrottlingOff" -Type DWord -Value 00000000
         Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Power" -Name "HiberbootEnabled" -Type DWord -Value 0000001
         $WPFMiscTweaksLapPower.IsChecked = $false
@@ -1049,6 +1050,7 @@ $WPFtweaksbutton.Add_Click({
         $WPFMiscTweaksLapNum.IsChecked = $false
         }
     If ( $WPFMiscTweaksPower.IsChecked -eq $true ) {
+        If(!(Test-Path "HKCU:\SYSTEM\CurrentControlSet\Control\Power\PowerThrottling")){New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Power" -Name "PowerThrottling"}
         Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Power\PowerThrottling" -Name "PowerThrottlingOff" -Type DWord -Value 00000001
         Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Power" -Name "HiberbootEnabled" -Type DWord -Value 0000000
         $WPFMiscTweaksPower.IsChecked = $false