Last active
October 11, 2024 11:39
-
-
Save trongtinh1212/caa7d00188626d9188f69e781fee82d8 to your computer and use it in GitHub Desktop.
Registry Tweaks Windows 10
This file contains 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
Windows Registry Editor Version 5.00 | |
;USE AT YOUR OWN RISK! | |
;USE AT YOUR OWN RISK! | |
;USE AT YOUR OWN RISK! | |
;Improves system responsiveness and network speed. | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile] | |
"SystemResponsiveness"=dword:00000001 | |
"NetworkThrottlingIndex"=dword:ffffffff | |
;Maintenance Disabled. | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Maintenance] | |
"MaintenanceDisabled"=dword:00000001 | |
;Slightly improves RAM management and overall system speed. | |
[HKEY_CURRENT_USER\Control Panel\Desktop] | |
"AutoEndTasks"="1" | |
"HungAppTimeout"="100" | |
"MenuShowDelay"="0" | |
"WaitToKillAppTimeout"="300" | |
"LowLevelHooksTimeout"="1000" | |
;Disables unnecessary features present in the Explorer. | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] | |
"NoLowDiskSpaceChecks"=dword:00000001 | |
"LinkResolveIgnoreLinkInfo"=dword:00000001 | |
"NoResolveSearch"=dword:00000001 | |
"NoResolveTrack"=dword:00000001 | |
"NoInternetOpenWith"=dword:00000001 | |
;Speeds up Shut Down time. | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control] | |
"WaitToKillServiceTimeout"="300" | |
;Resolves a memory leak in windows 10 through Registry. | |
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Ndu] | |
"Start"=dword:00000004 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender] | |
"DisableAntiSpyware"=dword:00000001 | |
;Turn off LargeSystemCache | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management] | |
"LargeSystemCache"=dword:00000000 | |
;Disable Cortana | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search] | |
"AllowCortana"=dword:00000000 | |
"DisableWebSearch"=dword:00000001 | |
"ConnectedSearchUseWeb"=dword:00000000 | |
"ConnectedSearchUseWebOverMeteredConnections"=dword:00000000 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search] | |
"DeviceHistoryEnabled"=dword:00000000 | |
"HistoryViewEnabled"=dword:00000000 | |
"AllowSearchToUseLocation"=dword:00000000 | |
"BingSearchEnabled"=dword:00000000 | |
"CortanaConsent"=dword:00000000 | |
;Disable mitigations | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management] | |
"FeatureSettings"=dword:00000000 | |
"FeatureSettingsOverrideMask"=dword:00000003 | |
"FeatureSettingsOverride"=dword:00000003 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Kernel] | |
"DisableTsx"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization] | |
-"MinVmVersionForCpuBasedMitigations"="1.0" | |
;Disable Power Throttling | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerThrottling] | |
"PowerThrottlingOff"=dword:00000001 | |
;Zero Startup Delay | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize] | |
"StartupDelayInMSec"=dword:00000000 | |
;Disable Windows App tracking to improve Start and Search Results | |
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\EdgeUI] | |
"DisableMFUTracking"=dword:00000001 | |
;This will make the taskbar clock show seconds | |
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced] | |
"ShowSecondsInSystemClock"=dword:00000001 | |
;Disable Windows Error Reporting | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Windows Error Reporting] | |
"Disabled"=dword:00000001 | |
;Increase Taskbar Transparency Level | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced] | |
"UseOLEDTaskbarTransparency"=dword:00000001 | |
; Disables app suggestions on start | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent] | |
"DisableWindowsConsumerFeatures"=dword:00000001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Be advised, "LargeSystemCache" is deprecated and does nothing.