Skip to content

Instantly share code, notes, and snippets.

@niikoo
Last active May 22, 2024 08:10
Show Gist options
  • Save niikoo/d45ce165fcb138ee4535e84c969878e0 to your computer and use it in GitHub Desktop.
Save niikoo/d45ce165fcb138ee4535e84c969878e0 to your computer and use it in GitHub Desktop.
Useful registry tweaks
Windows Registry Editor Version 5.00
; Add "Extract MSI" to MSI context menu
[HKEY_CLASSES_ROOT\Msi.Package\shell\Extract MSI\command]
@="msiexec.exe /a \"%1\" /qb TARGETDIR=\"%1_contents\""
; Enable Hex Numpad (Useful for certain Alt character insertions)
[HKEY_CURRENT_USER\Control Panel\Input Method]
"EnableHexNumpad"=dword:00000001
; Use CapsLock as Windows button (right)
; Win-Right + Left = Home
; Win-Right + Right = End
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys]
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys\00000010]
"Key Modifiers"=hex:02,c0,00,00
"Target IME"=hex:00,00,00,00
"Virtual Key"=hex:20,00,00,00
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys\00000011]
"Key Modifiers"=hex:04,c0,00,00
"Target IME"=hex:00,00,00,00
"Virtual Key"=hex:20,00,00,00
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys\00000012]
"Key Modifiers"=hex:02,c0,00,00
"Target IME"=hex:00,00,00,00
"Virtual Key"=hex:be,00,00,00
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys\00000070]
"Key Modifiers"=hex:02,c0,00,00
"Target IME"=hex:00,00,00,00
"Virtual Key"=hex:20,00,00,00
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys\00000071]
"Key Modifiers"=hex:04,c0,00,00
"Target IME"=hex:00,00,00,00
"Virtual Key"=hex:20,00,00,00
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys\00000072]
"Key Modifiers"=hex:03,c0,00,00
"Target IME"=hex:00,00,00,00
"Virtual Key"=hex:bc,00,00,00
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys\00000104]
"Key Modifiers"=hex:06,c0,00,00
"Target IME"=hex:11,04,01,e0
"Virtual Key"=hex:30,00,00,00
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys\00000200]
"Key Modifiers"=hex:03,c0,00,00
"Target IME"=hex:00,00,00,00
"Virtual Key"=hex:47,00,00,00
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys\00000201]
"Key Modifiers"=hex:03,c0,00,00
"Target IME"=hex:00,00,00,00
"Virtual Key"=hex:4b,00,00,00
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys\00000202]
"Key Modifiers"=hex:03,c0,00,00
"Target IME"=hex:00,00,00,00
"Virtual Key"=hex:4c,00,00,00
[HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys\00000203]
"Key Modifiers"=hex:03,c0,00,00
"Target IME"=hex:00,00,00,00
"Virtual Key"=hex:56,00,00,00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
; Single click on taskbar and open the last active window
"LastActiveClick"=dword:00000001
; Enable seconds in taskbar clock
"ShowSecondsInSystemClock"=dword:00000001
; Medium taskbar in Windows 11 (0 = small, 1 = medium, 2 = large [default])
"TaskbarSi"=dword:00000001
; Turn off text prediction and hardware keyboard autocorrection
[HKEY_CURRENT_USER\Software\Microsoft\Input\Settings]
"EnableHwkbTextPrediction"=dword:00000000
"EnableHwkbAutocorrection"=dword:00000000
"EnableHwkbAutocorrection2"=dword:00000000
; Turn off boot sound
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\BootAnimation]
"DisableStartupSound"=dword:00000001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment