Last active
February 11, 2024 13:10
-
-
Save Yovach/1e346bdb9f04a7706a68c6f9d8be6ca3 to your computer and use it in GitHub Desktop.
Tested on Samsung Galaxy Book2 Pro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Disable apps at startup | |
* Disable following Intel services (msconfig) : | |
- Intel Analytics Service | |
- Intel Connectivity Network Service | |
- Intel Dynamic Bandwidth Management | |
- Intel(R) Content Protection HDCP Service | |
- Intel(R) Dynamic Application Loader Host Interface Service | |
- Intel(R) Dynamic Tuning Technology Telemetry Service | |
- Intel(R) Graphics Command Center Service | |
- Intel(R) Innovation Platform Framework Service | |
- Intel(R) Management Engine WMI Provider Registration | |
- IntelConnect Service | |
* Disable Microsoft Telemetry (in Settings) | |
* Remove Bing Search from Windows Search (group policy): | |
- Computer Configuration > Administrative Templates > Windows Components > Search > Don't search the web or display web results in Search | |
Adjust Split Threshold (regedit) : | |
- `HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control` | |
- Edit `SvcHostSplitThresholdInKB` DWORD value | |
- Select your RAM size in KB (see table below) : | |
(default) | 380000 | |
4 GB | 400000 | |
6 GB | 600000 | |
8 GB | 800000 | |
12 GB | c00000 | |
16 GB | 1000000 | |
24 GB | 1800000 | |
32 GB | 2000000 | |
64 GB | 4000000 | |
In `msconfig` : | |
- Samsung WiFi Configuration => Disabled | |
- Maxim(R) Audio Service => Disabled | |
In `services.msc` : | |
- SamsungUpdateService: `Automatic` => `Manual` | |
- DSAService: `Automatic` => `Manual` | |
- DSAUpdateService: `Manual` | |
- PcaSvc: `Automatic (Delayed Start)` => `Manual` | |
- StorSvc: `Automatic (Delayed Start)` => `Manual` | |
- UsoSvc: `Automatic (Delayed Start)` => `Manual` | |
- WpnService: `Automatic` => `Disabled` | |
- edgeupdate: `Automatic (Delayed Start)` => `Manual` | |
- SysMain: `Automatic` => `Disabled` | |
- CDPSvc: `Automatic (Delayed Start)` => `Disabled` | |
- Spooler: `Automatic` => `Manual` | |
Limit Windows Defender (https://learn.microsoft.com/en-us/windows/client-management/mdm/defender-csp) | |
Open PowerShell as an Administrator | |
`Set-MpPreference -DisableCpuThrottleOnIdleScans $true -ThrottleForScheduledScanOnly $true -ScanAvgCPULoadFactor 50` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment