├── MMCSS ├── disable-mmcss.reg └── enable-mmcss.default.reg ├── GPU ├── disable-preemption.reg └── enable-preemption.default.reg ├── Memory ├── enable-largesystemcache.reg └── disable-largesystemcache.default.reg ├── Power ├── disable-powerthrottling.default-desktop.reg └── enable-powerthrottling.default-laptop.reg ├── User Interface ├── remove-power-plans-from-context-menu.reg ├── remove-run-with-priority-from-context-menu.reg ├── enable-taskbar-previews.reg ├── restore-default-alt-tab-behavior.reg └── restore-default-ggos-theme.reg ├── Win32 Priority Separation ├── win32ps-0x18-long-fixed.reg ├── win32ps-0x28-short-fixed.reg ├── win32ps-0x14-long-variable-1-1.reg ├── win32ps-0x15-long-variable-2-1.reg ├── win32ps-0x16-long-variable-3-1.reg ├── win32ps-0x24-short-variable-1-1.reg ├── win32ps-0x25-short-variable-2-1.reg ├── Undocumented Values │ ├── win32ps-0x55FFFFFF.reg │ ├── win32ps-0xFFF55555.reg │ ├── win32ps-0xFFFF3F91.reg │ └── win32ps-0xFFFFF311.reg ├── win32ps-0x26-short-variable-3-1.default.reg └── README.txt ├── README.md ├── Boot Configuration ├── BootMenuPolicy │ ├── bootmenupolicy-legacy.bat │ └── bootmenupolicy-standard.bat ├── TscSyncPolicy │ ├── tscsyncpolicy-legacy.bat │ ├── tscsyncpolicy-default.bat │ └── tscsyncpolicy-enhanced.bat └── Synthetic Timers (UsePlatformTick) │ ├── enable-synthetic-timers.bat │ └── disable-synthetic-timers.default.bat └── Network ├── reset-network-adapters.bat ├── Autotuning ├── disable-autotuning.bat └── enable-autotuning.default.bat └── reset-network-settings.bat /MMCSS/disable-mmcss.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getggos/tweaks/HEAD/MMCSS/disable-mmcss.reg -------------------------------------------------------------------------------- /GPU/disable-preemption.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getggos/tweaks/HEAD/GPU/disable-preemption.reg -------------------------------------------------------------------------------- /MMCSS/enable-mmcss.default.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getggos/tweaks/HEAD/MMCSS/enable-mmcss.default.reg -------------------------------------------------------------------------------- /GPU/enable-preemption.default.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getggos/tweaks/HEAD/GPU/enable-preemption.default.reg -------------------------------------------------------------------------------- /Memory/enable-largesystemcache.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getggos/tweaks/HEAD/Memory/enable-largesystemcache.reg -------------------------------------------------------------------------------- /Memory/disable-largesystemcache.default.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getggos/tweaks/HEAD/Memory/disable-largesystemcache.default.reg -------------------------------------------------------------------------------- /Power/disable-powerthrottling.default-desktop.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getggos/tweaks/HEAD/Power/disable-powerthrottling.default-desktop.reg -------------------------------------------------------------------------------- /Power/enable-powerthrottling.default-laptop.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getggos/tweaks/HEAD/Power/enable-powerthrottling.default-laptop.reg -------------------------------------------------------------------------------- /User Interface/remove-power-plans-from-context-menu.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_CLASSES_ROOT\DesktopBackground\Shell\Power Plan] 4 | -------------------------------------------------------------------------------- /User Interface/remove-run-with-priority-from-context-menu.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\exefile\shell\RunWithPriority] 4 | -------------------------------------------------------------------------------- /User Interface/enable-taskbar-previews.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] 4 | "ExtendedUIHoverTime"=dword:00000000 -------------------------------------------------------------------------------- /User Interface/restore-default-alt-tab-behavior.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer] 4 | "AltTabSettings"=dword:00000000 5 | -------------------------------------------------------------------------------- /Win32 Priority Separation/win32ps-0x18-long-fixed.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:00000018 -------------------------------------------------------------------------------- /Win32 Priority Separation/win32ps-0x28-short-fixed.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:00000028 -------------------------------------------------------------------------------- /Win32 Priority Separation/win32ps-0x14-long-variable-1-1.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:00000014 -------------------------------------------------------------------------------- /Win32 Priority Separation/win32ps-0x15-long-variable-2-1.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:00000015 -------------------------------------------------------------------------------- /Win32 Priority Separation/win32ps-0x16-long-variable-3-1.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:00000016 -------------------------------------------------------------------------------- /Win32 Priority Separation/win32ps-0x24-short-variable-1-1.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:00000024 -------------------------------------------------------------------------------- /Win32 Priority Separation/win32ps-0x25-short-variable-2-1.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:00000025 -------------------------------------------------------------------------------- /Win32 Priority Separation/Undocumented Values/win32ps-0x55FFFFFF.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:55ffffff -------------------------------------------------------------------------------- /Win32 Priority Separation/Undocumented Values/win32ps-0xFFF55555.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:fff55555 -------------------------------------------------------------------------------- /Win32 Priority Separation/Undocumented Values/win32ps-0xFFFF3F91.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:ffff3f91 -------------------------------------------------------------------------------- /Win32 Priority Separation/Undocumented Values/win32ps-0xFFFFF311.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:fffff311 -------------------------------------------------------------------------------- /Win32 Priority Separation/win32ps-0x26-short-variable-3-1.default.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl] 4 | "Win32PrioritySeparation"=dword:00000026 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ggOS Optional Tweaks 2 | The tweaks in these folders are optional. They may impact the 3 | FPS, input latency, hit reg, and overall feel of your games. 4 | There is no best value, because everyone has different games, 5 | hardware, needs and preferences. What may be great for you 6 | may be horrible for someone else, and vice versa. They are 7 | here for your testing. Except for Win32 Priorities, you must 8 | restart your computer after applying each tweak. 9 | -------------------------------------------------------------------------------- /Boot Configuration/BootMenuPolicy/bootmenupolicy-legacy.bat: -------------------------------------------------------------------------------- 1 | :: SET BOOTMENUPOLICY TO LEGACY 2 | :: https://github.com/getggos 3 | 4 | @echo off 5 | setlocal ENABLEDELAYEDEXPANSION 6 | 7 | :: CHECK FOR ADMIN PRIVILEGES 8 | dism >nul 2>&1 || (echo This script must be Run as Administrator. && pause && exit /b 1) 9 | 10 | :: FOR LEGACY BOOT MENU (BLACK SCREEN WITH PLAIN TEXT OPTIONS) 11 | bcdedit /set bootmenupolicy legacy 12 | 13 | echo BootMenuPolicy is now set to legacy. 14 | pause 15 | 16 | exit /b 0 17 | -------------------------------------------------------------------------------- /Boot Configuration/BootMenuPolicy/bootmenupolicy-standard.bat: -------------------------------------------------------------------------------- 1 | :: SET BOOTMENUPOLICY TO STANDARD 2 | :: https://github.com/getggos 3 | 4 | @echo off 5 | setlocal ENABLEDELAYEDEXPANSION 6 | 7 | :: CHECK FOR ADMIN PRIVILEGES 8 | dism >nul 2>&1 || (echo This script must be Run as Administrator. && pause && exit /b 1) 9 | 10 | :: FOR STANDARD BOOT MENU (BLUE SCREEN WITH BOX OPTIONS) 11 | bcdedit /set bootmenupolicy standard 12 | 13 | echo BootMenuPolicy is now set to standard. 14 | pause 15 | 16 | exit /b 0 17 | -------------------------------------------------------------------------------- /Boot Configuration/TscSyncPolicy/tscsyncpolicy-legacy.bat: -------------------------------------------------------------------------------- 1 | :: SET TSCSYNCPOLICY TO LEGACY 2 | :: https://github.com/getggos 3 | 4 | @echo off 5 | setlocal ENABLEDELAYEDEXPANSION 6 | 7 | :: CHECK FOR ADMIN PRIVILEGES 8 | dism >nul 2>&1 || (echo This script must be Run as Administrator. && pause && exit /b 1) 9 | 10 | :: FOR BETTER INPUT BUT WORSE FPS (YOUR EXPERIENCE MAY BE DIFFERENT) 11 | bcdedit /set tscsyncpolicy legacy >nul 2>&1 12 | 13 | echo TscSyncPolicy is now set to legacy. Please restart your computer. 14 | pause 15 | 16 | exit /b 0 17 | -------------------------------------------------------------------------------- /Boot Configuration/TscSyncPolicy/tscsyncpolicy-default.bat: -------------------------------------------------------------------------------- 1 | :: SET TSCSYNCPOLICY TO ENHANCED 2 | :: https://github.com/getggos 3 | 4 | @echo off 5 | setlocal ENABLEDELAYEDEXPANSION 6 | 7 | :: CHECK FOR ADMIN PRIVILEGES 8 | dism >nul 2>&1 || (echo This script must be Run as Administrator. && pause && exit /b 1) 9 | 10 | :: FOR A BALANCE OF FPS AND INPUT (YOUR EXPERIENCE MAY BE DIFFERENT) 11 | bcdedit /deletevalue tscsyncpolicy >nul 2>&1 12 | 13 | echo TscSyncPolicy is now set to default. Please restart your computer. 14 | pause 15 | 16 | exit /b 0 17 | -------------------------------------------------------------------------------- /Boot Configuration/TscSyncPolicy/tscsyncpolicy-enhanced.bat: -------------------------------------------------------------------------------- 1 | :: SET TSCSYNCPOLICY TO ENHANCED 2 | :: https://github.com/getggos 3 | 4 | @echo off 5 | setlocal ENABLEDELAYEDEXPANSION 6 | 7 | :: CHECK FOR ADMIN PRIVILEGES 8 | dism >nul 2>&1 || (echo This script must be Run as Administrator. && pause && exit /b 1) 9 | 10 | :: FOR BETTER FPS BUT WORSE INPUT (YOUR EXPERIENCE MAY BE DIFFERENT) 11 | bcdedit /set tscsyncpolicy enhanced >nul 2>&1 12 | 13 | echo TscSyncPolicy is now set to enhanced. Please restart your computer. 14 | pause 15 | 16 | exit /b 0 17 | -------------------------------------------------------------------------------- /Network/reset-network-adapters.bat: -------------------------------------------------------------------------------- 1 | :: RESET NETWORK ADAPTERS 2 | :: https://github.com/getggos 3 | 4 | @echo off 5 | setlocal ENABLEDELAYEDEXPANSION 6 | 7 | :: CHECK FOR ADMIN PRIVILEGES 8 | dism >nul 2>&1 || (echo This script must be Run as Administrator. && pause && exit /b 1) 9 | devcon /? >nul 2>&1 || ( echo This script requires devcon in the system path. && pause && exit /b 1 ) 10 | 11 | :: RESET NETWORK ADAPTERS 12 | devcon remove =net >nul 2>&1 13 | devcon rescan >nul 2>&1 14 | 15 | echo Your network adapters have been reset. 16 | pause 17 | 18 | exit /b 0 19 | -------------------------------------------------------------------------------- /Boot Configuration/Synthetic Timers (UsePlatformTick)/enable-synthetic-timers.bat: -------------------------------------------------------------------------------- 1 | :: ENABLE SYNTHETIC TIMERS (DISABLE USEPLATFORMTICK) 2 | :: https://github.com/getggos 3 | 4 | @echo off 5 | setlocal ENABLEDELAYEDEXPANSION 6 | 7 | :: CHECK FOR ADMIN PRIVILEGES 8 | dism >nul 2>&1 || (echo This script must be Run as Administrator. && pause && exit /b 1) 9 | 10 | :: DISABLE USEPLATFORMTICK 11 | bcdedit /deletevalue useplatformtick >nul 2>&1 12 | 13 | echo Synthetic Timers are now enabled and UsePlatformTick is disabled. 14 | echo Please restart your computer. 15 | 16 | pause 17 | exit /b 0 18 | -------------------------------------------------------------------------------- /Boot Configuration/Synthetic Timers (UsePlatformTick)/disable-synthetic-timers.default.bat: -------------------------------------------------------------------------------- 1 | :: DISABLE SYNTHETIC TIMERS (ENABLE USEPLATFORMTICK) 2 | :: https://github.com/getggos 3 | 4 | @echo off 5 | setlocal ENABLEDELAYEDEXPANSION 6 | 7 | :: CHECK FOR ADMIN PRIVILEGES 8 | dism >nul 2>&1 || (echo This script must be Run as Administrator. && pause && exit /b 1) 9 | 10 | :: ENABLE USEPLATFORMTICK 11 | bcdedit /set useplatformtick yes >nul 2>&1 12 | 13 | echo Synthetic Timers are now disabled and UsePlatformTick is enabled. 14 | echo Please restart your computer. 15 | 16 | pause 17 | exit /b 0 18 | -------------------------------------------------------------------------------- /Network/Autotuning/disable-autotuning.bat: -------------------------------------------------------------------------------- 1 | :: DISABLE NETWORK AUTOTUNING 2 | :: https://gitlab.com/ggos/support 3 | 4 | @echo off 5 | setlocal ENABLEDELAYEDEXPANSION 6 | 7 | :: CHECK FOR ADMIN PRIVILEGES 8 | dism >nul 2>&1 || (echo This script must be Run as Administrator. && pause && exit /b 1) 9 | 10 | :: DISABLE AUTOTUNING 11 | netsh int tcp set global autotuninglevel=disabled 12 | 13 | :: RESTART NETWORK ADAPTERS 14 | for /f "tokens=3,*" %%i in ('netsh int show interface^|find "Connected"') do ( 15 | netsh int set interface name="%%j" admin="disabled" >nul 2>&1 16 | netsh int set interface name="%%j" admin="enabled" >nul 2>&1 17 | ) 18 | 19 | echo Network autotuning is now disabled. 20 | pause 21 | 22 | exit /b 0 23 | -------------------------------------------------------------------------------- /Network/Autotuning/enable-autotuning.default.bat: -------------------------------------------------------------------------------- 1 | :: ENABLE NETWORK AUTOTUNING 2 | :: https://gitlab.com/ggos/support 3 | 4 | @echo off 5 | setlocal ENABLEDELAYEDEXPANSION 6 | 7 | :: CHECK FOR ADMIN PRIVILEGES 8 | dism >nul 2>&1 || (echo This script must be Run as Administrator. && pause && exit /b 1) 9 | 10 | :: SET AUTOTUNING TO NORMAL 11 | netsh int tcp set global autotuninglevel=normal 12 | 13 | :: RESTART NETWORK ADAPTERS 14 | for /f "tokens=3,*" %%i in ('netsh int show interface^|find "Connected"') do ( 15 | netsh int set interface name="%%j" admin="disabled" >nul 2>&1 16 | netsh int set interface name="%%j" admin="enabled" >nul 2>&1 17 | ) 18 | 19 | echo Network autotuning is now enabled. 20 | pause 21 | 22 | exit /b 0 23 | -------------------------------------------------------------------------------- /Network/reset-network-settings.bat: -------------------------------------------------------------------------------- 1 | :: RESET NETWORK SETTINGS 2 | :: https://github.com/getggos 3 | 4 | @echo off 5 | setlocal ENABLEDELAYEDEXPANSION 6 | 7 | :: CHECK FOR ADMIN PRIVILEGES 8 | dism >nul 2>&1 || (echo This script must be Run as Administrator. && pause && exit /b 1) 9 | devcon /? >nul 2>&1 || ( echo This script requires devcon in the system path. && pause && exit /b 1 ) 10 | 11 | :: RESET NETWORK SETTINGS 12 | netsh winsock reset >nul 2>&1 13 | netsh int ipv4 reset >nul 2>&1 14 | netsh int ipv6 reset >nul 2>&1 15 | ipconfig /release >nul 2>&1 16 | ipconfig /renew >nul 2>&1 17 | ipconfig /flushdns >nul 2>&1 18 | 19 | :: RESTART NETWORK ADAPTERS 20 | devcon disable =net >nul 2>&1 21 | timeout /t 3 /nobreak >nul 2>&1 22 | devcon enable =net >nul 2>&1 23 | 24 | echo Your network settings have been reset. 25 | pause 26 | 27 | exit /b 0 28 | -------------------------------------------------------------------------------- /Win32 Priority Separation/README.txt: -------------------------------------------------------------------------------- 1 | ------------------------------------------------------------- 2 | ggOS - Windows 10 for Gamers 3 | https://github.com/getggos 4 | ------------------------------------------------------------- 5 | WIN32 PRIORITY SEPARATION 6 | The registry files in this folder can impact the FPS, input 7 | latency, hit reg, and overall feel of your games. In theory, 8 | long values are better for smoothness, and short values are 9 | better for latency. There is no best value, because everyone 10 | has different hardware, games, needs, and preferences. These 11 | values are here for testing, and there is no need to restart 12 | your computer after applying them. 13 | ------------------------------------------------------------- 14 | THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS "AS IS" AND ANY 15 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 16 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 17 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 18 | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 19 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 21 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 23 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 24 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE 25 | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 | ------------------------------------------------------------- 27 | -------------------------------------------------------------------------------- /User Interface/restore-default-ggos-theme.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects] 4 | "VisualFXSetting"=dword:00000002 5 | 6 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects] 7 | "VisualFXSetting"=dword:00000003 8 | 9 | [HKEY_CURRENT_USER\Control Panel\Desktop] 10 | "UserPreferencesMask"=hex(3):90,12,03,80,10,00,00,00 11 | "DragFullWindows"="1" 12 | "FontSmoothing"="2" 13 | 14 | [HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics] 15 | "MinAnimate"="0" 16 | 17 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer] 18 | "ShellState"=hex(3):24,00,00,00,27,20,00,00,00,00,00,00,00,00,00,00,00,00,\ 19 | 00,00,01,00,00,00,13,00,00,00,00,00,00,00,62,00,00,00 20 | 21 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced] 22 | "IconsOnly"=dword:00000000 23 | "ListviewAlphaSelect"=dword:00000000 24 | "ListviewShadow"=dword:00000000 25 | "TaskbarAnimations"=dword:00000000 26 | 27 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\DWM] 28 | "AccentColor"=dword:ff4d4d4d 29 | "AlwaysHibernateThumbnails"=dword:00000000 30 | "ColorizationAfterglow"=dword:c44d4d4d 31 | "ColorizationColor"=dword:c44d4d4d 32 | "EnableAeroPeek"=dword:00000000 33 | "EnableWindowColorization"=dword:00000001 34 | 35 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize] 36 | "AppsUseLightTheme"=dword:00000000 37 | "EnableTransparency"=dword:00000000 38 | "SystemUsesLightTheme"=dword:00000000 39 | 40 | [HKEY_CURRENT_USER\Control Panel\Colors] 41 | "Background"="25 25 25" 42 | 43 | [HKEY_CURRENT_USER\Control Panel\Desktop] 44 | "WallPaper"="" 45 | 46 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Wallpapers] 47 | "BackgroundType"=dword:00000001 48 | 49 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] 50 | "Background"="25 25 25" 51 | 52 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\History\Colors] 53 | "ColorHistory0"=dword:004d4d4d 54 | "ColorHistory1"=dword:ffd77800 55 | "ColorHistory2"=dword:00c3b700 56 | "ColorHistory3"=dword:00484a4c 57 | "ColorHistory4"=dword:002311e8 58 | 59 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\DWM] 60 | "ColorizationColor"=dword:c44d4d4d 61 | "ColorizationAfterglow"=dword:c44d4d4d 62 | "EnableWindowColorization"=dword:00000001 63 | "AccentColor"=dword:004d4d4d 64 | 65 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Accent] 66 | "StartColorMenu"=dword:00424242 67 | "AccentColorMenu"=dword:004d4d4d 68 | "AccentPalette"=hex:6f,6f,6f,ff,61,61,61,ff,57,57,57,ff,4d,4d,4d,ff,42,42,42,\ 69 | ff,38,38,38,ff,2a,2a,2a,ff,88,17,98,00 70 | 71 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Wallpapers] 72 | "StartColorMenu"=dword:00424242 73 | "AccentColorMenu"=dword:004d4d4d 74 | "BackgroundType"=dword:00000001 75 | 76 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Accent] 77 | "StartColorMenu"=dword:00424242 78 | "AccentColorMenu"=dword:004d4d4d 79 | "AccentPalette"=hex:6f,6f,6f,ff,61,61,61,ff,57,57,57,ff,4d,4d,4d,ff,42,42,42,\ 80 | ff,38,38,38,ff,2a,2a,2a,ff,88,17,98,00 81 | 82 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Wallpapers] 83 | "StartColorMenu"=dword:00424242 84 | "AccentColorMenu"=dword:004d4d4d 85 | "BackgroundType"=dword:00000001 86 | 87 | [HKEY_USERS\.DEFAULT\Control Panel\Colors] 88 | "Background"="25 25 25" 89 | 90 | [HKEY_USERS\S-1-5-18\Control Panel\Colors] 91 | "Background"="25 25 25" 92 | 93 | [HKEY_USERS\S-1-5-19\Control Panel\Colors] 94 | "Background"="25 25 25" 95 | 96 | [HKEY_USERS\S-1-5-20\Control Panel\Colors] 97 | "Background"="25 25 25" 98 | 99 | [HKEY_USERS\.DEFAULT\Control Panel\Desktop] 100 | "WallPaper"="" 101 | 102 | [HKEY_USERS\S-1-5-18\Control Panel\Desktop] 103 | "WallPaper"="" 104 | 105 | [HKEY_USERS\S-1-5-19\Control Panel\Desktop] 106 | "WallPaper"="" 107 | 108 | [HKEY_USERS\S-1-5-20\Control Panel\Desktop] 109 | "WallPaper"="" 110 | 111 | [HKEY_USERS\.DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Wallpapers] 112 | "StartColorMenu"=dword:00424242 113 | "AccentColorMenu"=dword:004d4d4d 114 | 115 | [HKEY_USERS\.DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Accent] 116 | "StartColorMenu"=dword:00424242 117 | "AccentColorMenu"=dword:004d4d4d 118 | 119 | [HKEY_USERS\S-1-5-18\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Wallpapers] 120 | "StartColorMenu"=dword:00424242 121 | "AccentColorMenu"=dword:004d4d4d 122 | 123 | [HKEY_USERS\S-1-5-18\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Accent] 124 | "StartColorMenu"=dword:00424242 125 | "AccentColorMenu"=dword:004d4d4d 126 | --------------------------------------------------------------------------------