Windows Registry Hacks
Think of the Windows Registry as the “Brain” or the master settings book of your computer. While most people change settings using the standard menus, the Registry lets you go “under the hood” to change things that are usually hidden.
⚠️ A Quick Warning
The Registry is very powerful. If you change the wrong thing, your computer might stop working. Before you try any of these “hacks,” create a System Restore Point—this is like a “Save Game” for your computer that lets you go back in time if something breaks.
How to Use These Hacks
To use most of these, you’ll create a .REG file:
- Copy the code provided.
- Paste it into Notepad.
- Save the file with .reg at the end (for example:
fast-shutdown.reg). - Double-click the file to run it, then restart your computer.
The Top Computer Hacks
1. Bring Back the Old Right-Click Menu
Windows 11 simplified the menu you see when you right-click. If you hate clicking “Show more options” every time, you can bring back the classic menu.
To change it: Open the Windows Terminal (Admin) and paste:
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
To undo it: Use the same terminal and paste:
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
2. Skip the Lock Screen
If you find the clock screen (the one you have to swipe up on before logging in) annoying, you can skip straight to the password screen.
Why? It saves time and removes ads or “tips” Microsoft puts there.
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\Personalization] "NoLockScreen"=dword:00000001
3. Stop Windows from Updating Automatically
Sometimes updates happen at the worst time or have bugs. You can turn off automatic updates so you only download them when you are ready.
Warning: You must remember to check for updates manually so your computer stays safe from hackers!
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsUpdate\\AU] "NoAutoUpdate"=dword:00000001
4. Speed Up Shutdown
If your PC takes forever to turn off, it’s usually because apps are refusing to close. This hack tells Windows to wait only 2 seconds before forcing apps to close.
Note: Make sure you save your work first, or you might lose data when the PC shuts down so fast!
[HKEY_CURRENT_USER\\Control Panel\\Desktop] "AutoEndTasks"="1" "HungAppTimeout"="2000" "WaitToKillAppTimeout"="2000"
[HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control] "WaitToKillServiceTimeout"="2000"
5. Add the “D:” Drive to Your Sidebar
If you have a second hard drive (usually called the D: Drive) for games or movies, this hack pins it to the left side of your folders so you can find it instantly.
[HKEY_CURRENT_USER\\Software\\Classes\\CLSID\\{0525388b-89d9-4112-bf4d-2aaccb716a7f}] @="D: Drive" "System.IsPinnedToNamespaceTree"=dword:00000001 "SortOrderIndex"=dword:00000050
[HKEY_CURRENT_USER\\Software\\Classes\\CLSID\\{0525388b-89d9-4112-bf4d-2aaccb716a7f}\\DefaultIcon] @=hex(2):69,00,6d,00,61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,\\ 00,2c,00,2d,00,33,00,32,00,00,00
[HKEY_CURRENT_USER\\Software\\Classes\\CLSID\\{0525388b-89d9-4112-bf4d-2aaccb716a7f}\\InProcServer32] @=hex(2):43,00,3a,00,5c,00,57,00,49,00,4e,00,44,00,4f,00,57,00,53,00,5c,00,73,\\ 00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,73,00,68,00,65,00,6c,00,\\ 6c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,00,00
[HKEY_CURRENT_USER\\Software\\Classes\\CLSID\\{0525388b-89d9-4112-bf4d-2aaccb716a7f}\\Instance] "CLSID"="{0E5AAE11-A475-4c5b-AB00-C66DE400274E}"
[HKEY_CURRENT_USER\\Software\\Classes\\CLSID\\{0525388b-89d9-4112-bf4d-2aaccb716a7f}\\Instance\\InitPropertyBag] "Attributes"=dword:00000011 "TargetFolderPath"=hex(2):44,00,3a,00,5c,00,00,00
[HKEY_CURRENT_USER\\Software\\Classes\\CLSID\\{0525388b-89d9-4112-bf4d-2aaccb716a7f}\\ShellFolder] "FolderValueFlags"=dword:00000028 "Attributes"=dword:f080004d
[HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\HideDesktopIcons\\NewStartPanel] "{0525388b-89d9-4112-bf4d-2aaccb716a7f}"=dword:00000001
[HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\NameSpace\\{0525388b-89d9-4112-bf4d-2aaccb716a7f}] @="D: Drive"
6. Make an Old Computer Faster
Windows uses a lot of “eye candy” (like smooth animations and shadows). On older laptops, these make things slow. This hack turns off the fancy stuff to give you a speed boost that won’t get reset by Windows updates.
[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VisualEffects] "VisualFXSetting"=dword:00000002
7. Better Gaming (No “Throttling”)
Windows sometimes slows down your processor (CPU) or your internet to save battery or “share” speed with background apps. For gamers, this causes “lag” or “stuttering.”
- Power Throttling: Turning this off keeps your CPU at max speed.
- Network Throttling: Turning this off ensures your game gets all the internet speed it needs, which can lower your “ping.”
[HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Power\\PowerThrottling] "PowerThrottlingOff"=dword:00000001
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Multimedia\\SystemProfile]
"NetworkThrottlingIndex"=dword:ffffffff
Summary
You don’t have to be a computer genius to use these tricks, but you do need to be careful. Only use scripts from people you trust, and always have a backup!
