├── ActivateWindowsPhotoViewer.reg ├── CopyTo_MoveTo ├── AddCopyToMoveToInContextMenu.reg └── RestoreDefaultSettings.reg ├── Disable_LastAccessTimestamps.reg ├── EnableLM-NTLM_Responses.reg ├── EnablePAEx86.reg ├── EnableTLS_1.0.reg ├── EnableVerboseLogging.reg ├── MakeWindowsRespondFaster ├── MakeWindowsRespondFaster.reg └── RestoreDefaultSettings.reg ├── README.md ├── Replace Default Windows Font ├── ReplaceDefaultFont.reg └── RestoreDefaultFont.reg ├── TakeOwnership ├── AddTakeOwnershipToContextMenu.reg └── RestoreDefaultSettings.reg ├── UnlockPersonalizationInWindows.reg ├── Windows10 └── GetWindows10 │ ├── DisableGetWindows10.reg │ └── EnableGetWindows10.reg └── addCMDtoContextMenu.reg /ActivateWindowsPhotoViewer.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ;Created by @snkrsnkampa 4 | 5 | [HKEY_CLASSES_ROOT\Applications\photoviewer.dll] 6 | 7 | [HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell] 8 | 9 | [HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open] 10 | "MuiVerb"="@photoviewer.dll,-3043" 11 | 12 | [HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open\command] 13 | @=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\ 14 | 00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,72,00,75,00,\ 15 | 6e,00,64,00,6c,00,6c,00,33,00,32,00,2e,00,65,00,78,00,65,00,20,00,22,00,25,\ 16 | 00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,46,00,69,00,6c,00,65,00,73,00,\ 17 | 25,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,77,00,73,00,20,00,50,00,68,00,6f,\ 18 | 00,74,00,6f,00,20,00,56,00,69,00,65,00,77,00,65,00,72,00,5c,00,50,00,68,00,\ 19 | 6f,00,74,00,6f,00,56,00,69,00,65,00,77,00,65,00,72,00,2e,00,64,00,6c,00,6c,\ 20 | 00,22,00,2c,00,20,00,49,00,6d,00,61,00,67,00,65,00,56,00,69,00,65,00,77,00,\ 21 | 5f,00,46,00,75,00,6c,00,6c,00,73,00,63,00,72,00,65,00,65,00,6e,00,20,00,25,\ 22 | 00,31,00,00,00 23 | 24 | [HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open\DropTarget] 25 | "Clsid"="{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}" 26 | 27 | [HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\print] 28 | 29 | [HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\print\command] 30 | @=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\ 31 | 00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,72,00,75,00,\ 32 | 6e,00,64,00,6c,00,6c,00,33,00,32,00,2e,00,65,00,78,00,65,00,20,00,22,00,25,\ 33 | 00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,46,00,69,00,6c,00,65,00,73,00,\ 34 | 25,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,77,00,73,00,20,00,50,00,68,00,6f,\ 35 | 00,74,00,6f,00,20,00,56,00,69,00,65,00,77,00,65,00,72,00,5c,00,50,00,68,00,\ 36 | 6f,00,74,00,6f,00,56,00,69,00,65,00,77,00,65,00,72,00,2e,00,64,00,6c,00,6c,\ 37 | 00,22,00,2c,00,20,00,49,00,6d,00,61,00,67,00,65,00,56,00,69,00,65,00,77,00,\ 38 | 5f,00,46,00,75,00,6c,00,6c,00,73,00,63,00,72,00,65,00,65,00,6e,00,20,00,25,\ 39 | 00,31,00,00,00 40 | 41 | [HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\print\DropTarget] 42 | "Clsid"="{60fd46de-f830-4894-a628-6fa81bc0190d}" -------------------------------------------------------------------------------- /CopyTo_MoveTo/AddCopyToMoveToInContextMenu.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ;Created by @snkrsnkampa 4 | 5 | [HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Copy To] 6 | @="{C2FBB630-2971-11D1-A18C-00C04FD75D13}" 7 | 8 | [HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Move To] 9 | @="{C2FBB631-2971-11D1-A18C-00C04FD75D13}" 10 | -------------------------------------------------------------------------------- /CopyTo_MoveTo/RestoreDefaultSettings.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ;Created by @snkrsnkampa 4 | 5 | [-HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Copy To] 6 | 7 | [-HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Move To] 8 | -------------------------------------------------------------------------------- /Disable_LastAccessTimestamps.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamtraction/WindowsRegistry/33c1a5e09404d3baba0783db18227832932ab531/Disable_LastAccessTimestamps.reg -------------------------------------------------------------------------------- /EnableLM-NTLM_Responses.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamtraction/WindowsRegistry/33c1a5e09404d3baba0783db18227832932ab531/EnableLM-NTLM_Responses.reg -------------------------------------------------------------------------------- /EnablePAEx86.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamtraction/WindowsRegistry/33c1a5e09404d3baba0783db18227832932ab531/EnablePAEx86.reg -------------------------------------------------------------------------------- /EnableTLS_1.0.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamtraction/WindowsRegistry/33c1a5e09404d3baba0783db18227832932ab531/EnableTLS_1.0.reg -------------------------------------------------------------------------------- /EnableVerboseLogging.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamtraction/WindowsRegistry/33c1a5e09404d3baba0783db18227832932ab531/EnableVerboseLogging.reg -------------------------------------------------------------------------------- /MakeWindowsRespondFaster/MakeWindowsRespondFaster.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ;Created by @snkrsnkampa 4 | 5 | [HKEY_CURRENT_USER\Control Panel\Desktop] 6 | "AutoEndTasks"="1" 7 | "HungAppTimeout"="1000" 8 | "MenuShowDelay"="8" 9 | "WaitToKillAppTimeout"="2000" 10 | "LowLevelHooksTimeout"="1000" 11 | 12 | [HKEY_CURRENT_USER\Control Panel\Mouse] 13 | "MouseHoverTime"="8" 14 | 15 | [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] 16 | "NoLowDiskSpaceChecks"=dword:00000001 17 | "LinkResolveIgnoreLinkInfo"=dword:00000001 18 | "NoResolveSearch"=dword:00000001 19 | "NoResolveTrack"=dword:00000001 20 | "NoInternetOpenWith"=dword:00000001 21 | 22 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control] 23 | "WaitToKillServiceTimeout"="2000" 24 | 25 | -------------------------------------------------------------------------------- /MakeWindowsRespondFaster/RestoreDefaultSettings.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ;Created by @snkrsnkampa 4 | 5 | [HKEY_CURRENT_USER\Control Panel\Desktop] 6 | "AutoEndTasks"=- 7 | "HungAppTimeout"=- 8 | "MenuShowDelay"="400" 9 | "WaitToKillAppTimeout"=- 10 | "LowLevelHooksTimeout"=- 11 | 12 | [HKEY_CURRENT_USER\Control Panel\Mouse] 13 | "MouseHoverTime"="400" 14 | 15 | [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] 16 | "NoLowDiskSpaceChecks"=- 17 | "LinkResolveIgnoreLinkInfo"=- 18 | "NoResolveSearch"=- 19 | "NoResolveTrack"=- 20 | "NoInternetOpenWith"=- 21 | 22 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control] 23 | "WaitToKillServiceTimeout"="5000" 24 | 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WindowsRegistry 2 | Windows Registry Tweaks & Hacks 3 | -------------------------------------------------------------------------------- /Replace Default Windows Font/ReplaceDefaultFont.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ;Created by @snkrsnkampa 4 | ;Change your default font in Windows OS. 5 | ;Compatible with Windows 7, Windows 8/8.1, Windows 10 6 | 7 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts] 8 | "Segoe UI (TrueType)"="" 9 | "Segoe UI (TrueType)"="" 10 | "Segoe UI Black (TrueType)"="" 11 | "Segoe UI Black Italic (TrueType)"="" 12 | "Segoe UI Bold (TrueType)"="" 13 | "Segoe UI Bold Italic (TrueType)"="" 14 | "Segoe UI Historic (TrueType)"="" 15 | "Segoe UI Italic (TrueType)"="" 16 | "Segoe UI Light (TrueType)"="" 17 | "Segoe UI Light Italic (TrueType)"="" 18 | "Segoe UI Semibold (TrueType)"="" 19 | "Segoe UI Semibold Italic (TrueType)"="" 20 | "Segoe UI Semilight (TrueType)"="" 21 | "Segoe UI Semilight Italic (TrueType)"="" 22 | 23 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes] 24 | "Segoe UI"="Your Font Name" 25 | 26 | ;Replace "Your Font Name" with the font you would like to replace the default Windows font with. 27 | ;NOTE: WRITE YOUR FONT NAME WITHIN DOUBLE QUOTES. -------------------------------------------------------------------------------- /Replace Default Windows Font/RestoreDefaultFont.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamtraction/WindowsRegistry/33c1a5e09404d3baba0783db18227832932ab531/Replace Default Windows Font/RestoreDefaultFont.reg -------------------------------------------------------------------------------- /TakeOwnership/AddTakeOwnershipToContextMenu.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ;Created by @snkrsnkampa 4 | 5 | [HKEY_CLASSES_ROOT\*\shell\runas] 6 | @="Take Ownership" 7 | "NoWorkingDirectory"="" 8 | 9 | [HKEY_CLASSES_ROOT\*\shell\runas\command] 10 | @="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" 11 | "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" 12 | 13 | [HKEY_CLASSES_ROOT\Directory\shell\runas] 14 | @="Take Ownership" 15 | "NoWorkingDirectory"="" 16 | 17 | [HKEY_CLASSES_ROOT\Directory\shell\runas\command] 18 | @="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t" 19 | "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t" 20 | -------------------------------------------------------------------------------- /TakeOwnership/RestoreDefaultSettings.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ;Created by @snkrsnkampa 4 | 5 | [-HKEY_CLASSES_ROOT\*\shell\runas] 6 | 7 | [-HKEY_CLASSES_ROOT\Directory\shell\runas] 8 | -------------------------------------------------------------------------------- /UnlockPersonalizationInWindows.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamtraction/WindowsRegistry/33c1a5e09404d3baba0783db18227832932ab531/UnlockPersonalizationInWindows.reg -------------------------------------------------------------------------------- /Windows10/GetWindows10/DisableGetWindows10.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Created by @snkrsnkampa 4 | 5 | [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\GWX] 6 | "DisableGwx"=dword:00000001 7 | -------------------------------------------------------------------------------- /Windows10/GetWindows10/EnableGetWindows10.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ; Created by @snkrsnkampa 4 | 5 | [-HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\GWX] 6 | -------------------------------------------------------------------------------- /addCMDtoContextMenu.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | ;Adds a 'Open command window here' option to Shift+Right-Click context menu 4 | ;Required for Windows 10 Creators Update, as Microsoft had replaced 5 | ;command prompt with PowerShell in the context menu 6 | ;Created by @k3rn31p4nic 7 | 8 | [HKEY_CLASSES_ROOT\Directory\shell\cmdprompt] 9 | @="@shell32.dll,-8506" 10 | "Extended"="" 11 | "NoWorkingDirectory"="" 12 | 13 | [HKEY_CLASSES_ROOT\Directory\shell\cmdprompt\command] 14 | @="cmd.exe /s /k pushd \"%V\"" 15 | 16 | [HKEY_CLASSES_ROOT\Directory\Background\shell\cmdprompt] 17 | @="@shell32.dll,-8506" 18 | "Extended"="" 19 | "NoWorkingDirectory"="" 20 | 21 | [HKEY_CLASSES_ROOT\Directory\Background\shell\cmdprompt\command] 22 | @="cmd.exe /s /k pushd \"%V\"" 23 | 24 | [HKEY_CLASSES_ROOT\Drive\shell\cmdprompt] 25 | @="@shell32.dll,-8506" 26 | "Extended"="" 27 | "NoWorkingDirectory"="" 28 | 29 | [HKEY_CLASSES_ROOT\Drive\shell\cmdprompt\command] 30 | @="cmd.exe /s /k pushd \"%V\"" 31 | --------------------------------------------------------------------------------