From aff667345d1a7e819e4b355886d8acf1c82d6ab6 Mon Sep 17 00:00:00 2001 From: seerge Date: Mon, 13 Feb 2023 19:02:10 +0100 Subject: [PATCH] Minor fixes --- README.md | 2 +- autostart.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6658878d..29909c9c 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A small windows system tray utility that allows you to switch between 3 main GPU 2. Standard mode (Windows Hybrid) : iGPU and dGPU (Radeon 6700s/6800s) enabled, iGPU drives built in display 3. Ultimate mode: iGPU and dGPU enabled, but dGPU drives built in display -##UPDATE: February 12, 2023 +## UPDATE: February 12, 2023 1. Added switching of **Performance profiles (including default fan curves)** is also available! switching happens via same ASUS WMI low level commands. Profiles are same as in Armory Crate - Silent, Balanced and Turbo. diff --git a/autostart.ps1 b/autostart.ps1 index abd95e80..073464eb 100644 --- a/autostart.ps1 +++ b/autostart.ps1 @@ -1,6 +1,6 @@ $taskName = "G14Helper" $task = Get-ScheduledTask -TaskName $taskName -ErrorAction SilentlyContinue -if ($task -ne $null) +if ($null -ne $task) { Unregister-ScheduledTask -TaskName $taskName -Confirm:$false }