Readme and new screenshot

This commit is contained in:
seerge
2023-02-23 00:41:57 +01:00
parent 44c3d9f3c7
commit 41d92d76cc
3 changed files with 15 additions and 4 deletions

View File

@@ -19,6 +19,7 @@ Profiles are **same** as in Armory Crate, including default fan curves
1. Eco mode : only low power iGPU (Radeon 680u) enabled, iGPU drives built in display 1. Eco mode : only low power iGPU (Radeon 680u) enabled, iGPU drives built in display
2. Standard mode (Windows Hybrid) : iGPU and dGPU (Radeon 6700s/6800s) enabled, iGPU drives built in display 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 3. Ultimate mode: iGPU and dGPU enabled, but dGPU drives built in display
4. **Custom fan profiles** for any mode!
## Extras ## Extras
@@ -33,8 +34,7 @@ Profiles are **same** as in Armory Crate, including default fan curves
## Things still missing ## Things still missing
1. Custom fan profiles 1. Anime matrix control
2. Anime matrix control
## How to install ## How to install
@@ -42,8 +42,8 @@ Profiles are **same** as in Armory Crate, including default fan curves
2. Unzip to a folder of your choice 2. Unzip to a folder of your choice
3. Run **GHelper.exe** 3. Run **GHelper.exe**
Note: Uses low level ASUS WMI commands to do switching and doens't require Armory Crate to be isntalled at all. Note: Uses low level ASUS ACPI commands to do switching and doens't require Armory Crate to be isntalled at all.
Therefore requires Administrator priveledges on Windows to run. Doesn't require administrator privileges to run (anymore)!
I don`t have Microsoft certificate to sign app yet, so if you set a warning from Windows Defender on launch (Windows Protected your PC), click More Info -> Run anyway. I don`t have Microsoft certificate to sign app yet, so if you set a warning from Windows Defender on launch (Windows Protected your PC), click More Info -> Run anyway.

View File

@@ -10,6 +10,17 @@ public class Startup
public static bool IsScheduled() public static bool IsScheduled()
{ {
TaskService taskService = new TaskService(); TaskService taskService = new TaskService();
// cleanup of OLD autorun
try
{
taskService.RootFolder.DeleteTask("GSharpHelper");
} catch
{
Debug.WriteLine("Not running as admin");
}
return (taskService.RootFolder.AllTasks.Any(t => t.Name == taskName)); return (taskService.RootFolder.AllTasks.Any(t => t.Name == taskName));
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 MiB

After

Width:  |  Height:  |  Size: 2.3 MiB