Add files via upload

This commit is contained in:
Belim 2023-02-17 16:25:06 +01:00 committed by GitHub
parent d4c8ab0af9
commit 90f5edccbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,12 @@
[Info]
DisplayName=Enable Ultimate Performance Mode
Publisher=Builtbybel - https://www.builtbybel.com
AboutScript=Microsoft added the "Ultimate Performance mode" power scheme to Windows 10 April 2018 Update to optimize the system's performance, especially high-end PCs. The "Ultimate Performance" power plan option may not be available on some systems, especially if you are using a laptop.
ScriptLanguage=PowerShell
ConditionScript=ultimate_performance-mode.ps1
CreateNoWindow=true

View File

@ -0,0 +1,15 @@
[reflection.assembly]::loadwithpartialname("System.Windows.Forms") | Out-Null
$msgBoxInput = [System.Windows.Forms.MessageBox]::Show('Do you want to enable the Ultimate Performance power plan?','Tweakomatic','YesNo','Question')
switch ($msgBoxInput) {
'Yes' {
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
[System.Windows.Forms.MessageBox]::Show('Power plan has been successfully enabled. Now open Settings and navigate to System > Power & sleep > Additional Power Settings and enable the Ultimate Performance power plan.')
}
'No'{}
}