Merge pull request #158 from aleff-github/patch-25

Make Windows performant (but ugly and boring)
pull/178/head
Kalani Helekunihi 2023-06-12 14:26:57 -04:00 committed by GitHub
commit 4c5606da54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Make Windows performant (but ugly and boring)
This script can be used to change some advanced Windows settings to make it as efficient as possible albeit losing some of the fluidity and beauty of the operating system.
This script is Plug-And-Play <3
**Category**: Execution
![](Make_Windows_performant_but_ugly_and_boring.gif)
## Description
This script can be used to change some advanced Windows settings to make it as efficient as possible albeit losing some of the fluidity and beauty of the operating system.
The script opens the Windows advanced settings via sysdm.cpl and accesses the advanced settings by changing the selected option for best performance and unchecking all possible features.
### Dependencies
* Nothing is needed, this script is Plug-And-Play <3

View File

@ -0,0 +1,47 @@
REM ##################################################################
REM # |
REM # Title : Make Windows performant (but ugly and boring) |
REM # Author : Aleff |
REM # Version : 1.0 |
REM # Category : Execution |
REM # Target : Windows 10/11 |
REM # |
REM ##################################################################
REM Plug-And-Play <3
REM Requirements:
REM - Nothing
REM Note:
REM - Payload tested on Windows 11 Eng
DEFAULT_DELAY 500
GUI r
DELAY 2000
REM Open advanced settings
STRINGLN sysdm.cpl
DELAY 2000
REM Goto nav bar
REPEAT 5 TAB
REM Goto Advanced
REPEAT 2 RIGHTARROW
REM Open Settings
TAB
REM Invia il comando
ENTER
REM Adjust for best performance
REPEAT 2 DOWNARROW
REM Save it
REPEAT 4 TAB
DELAY 3000
REM Close the windows (not the os lol)
REPEAT 2 ALT F4