mirror of https://github.com/hak5/omg-payloads.git
Merge pull request #158 from aleff-github/patch-25
Make Windows performant (but ugly and boring)pull/178/head
commit
4c5606da54
Binary file not shown.
After Width: | Height: | Size: 6.3 MiB |
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue