If File Explorer in Windows 11 feels sluggish and cluttered with modern menu cruft, a handful of Registry tweaks can strip away the noise, restore classic behaviors, and dramatically speed up browsing. The operating system ships with a redesigned context menu, tight OneDrive integration, a Gallery view, and automatic folder-type detection—features that often add visual noise and processing delays. Power users have long turned to Registry edits to reclaim control, and the eight techniques collected here are among the most effective. They remove unwanted shell extensions, hide unused navigation panes, bring back the classic right-click menu, and force folders to load faster by disabling content sniffing. Each change is reversible and can be applied per-user without uninstalling any apps.
Background: Why These Tweaks Matter
File Explorer delays are not always caused by hardware limitations. Two common culprits lurk in the software itself. First, context-menu extensions registered by both third-party and bundled apps add entries that must be loaded every time you right-click. Too many such extensions, and the menu can take a noticeable moment to appear. Second, Explorer’s automatic folder-type detection inspects the contents of each folder to decide whether to apply a Pictures, Documents, Music, or other template. In directories with thousands of files, this probing can stall browsing.
The tweaks that follow directly target these behaviors. Blocking specific shell extension GUIDs eliminates unwanted menu items. Hiding navigation pane pages like Gallery and OneDrive removes visual clutter and reduces background activity. Restoring the classic context menu bypasses the modern WinUI overlay that often hides commands behind a “Show more options” click. Finally, forcing a generic “NotSpecified” folder type stops Explorer from sniffing content types, yielding noticeably faster load times for large folders.
Safety First: Registry Hygiene and Rollback
Editing the Windows Registry is powerful, and mistakes can break functionality. Before making any changes, export the affected branch or create a System Restore point. Apply one tweak at a time and verify Explorer’s behavior before adding another. Most edits below are per-user (HKCU) and do not require administrative privileges when applied for the current user, but commands in system-wide form (HKLM) need admin rights. If a tweak doesn’t work as expected, simply delete the key or value you created, or run the provided undo command.
1. Remove “Ask Copilot” from the Context Menu
Copilot’s integration into File Explorer adds an “Ask Copilot” entry to the right-click menu. For users who keep Copilot enabled but find this entry intrusive, blocking the associated shell extension removes the clutter without uninstalling the app.
Steps:
- Open Registry Editor (regedit).
- Navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Shell Extensions.
- Create a key named Blocked if it doesn’t exist.
- Under Blocked, create a new String value (REG_SZ) named {CB3B0003-8088-4EDE-8769-8B354AB2FF8C}.
- Restart Explorer or reboot.
Undo: Delete the GUID string from the Blocked key.
This GUID targets the Copilot shell extension specifically. If Microsoft changes the CLSID in future updates, the tweak may stop working, so re‑verify after major Windows updates.
2. Remove “Edit with Clipchamp” from the Context Menu
Clipchamp, Microsoft’s video editor, is preinstalled on many Windows 11 systems. Its context‑menu entry can be safely hidden if you use other editing tools.
Steps:
- In regedit, go to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked.
- Add a new String value named {8BCF599D-B158-450F-B4C2-430932F2AF2F}.
- Restart Explorer.
Undo: Delete the string from Blocked.
Community references sometimes list alternative Clipchamp‑related GUIDs. If this exact GUID has no effect, check the PackagedCom entries under HKLM\SOFTWARE\Classes\PackagedCom\Package to locate the installed package’s CLSID.
3. Remove “Edit with Paint” from the Context Menu
For users who prefer another image editor or never use Paint’s shell integration, this tweak cleans the right‑click menu.
Steps:
- Add a String value named {2430F218-B743-4FD6-97BF-5C76541B4AE9} to the Blocked key under HKCU\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked.
- Restart Explorer.
Undo: Delete the GUID from Blocked.
Multiple community guides and ready‑made .reg files use this same GUID, making it a reliable change across Windows 11 builds.
4. Remove “Edit with Notepad” from the Context Menu
Notepad’s modern context‑menu entry can be removed without uninstalling the app, giving you a cleaner right‑click experience.
Steps:
- Under HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked, create a String value named {CA6CC9F1-867A-481E-951E-A28C5E4F01EA}.
- Restart Explorer.
Undo: Delete the string.
Microsoft Community discussions and third‑party how‑tos corroborate the effectiveness of this GUID, confirming it hides the command cleanly.
5. Hide the Gallery Page from the Navigation Pane
The Gallery node in Explorer’s left pane provides a Photos‑like view, but not everyone wants it. Hiding it declutters the navigation tree.
Steps:
- Navigate to HKEY_CURRENT_USER\Software\Classes\CLSID.
- Create a new key named {e88865ea-0e1c-4e20-9aa6-edcd0212c87c}.
- Under it, create a DWORD (32‑bit) value named System.IsPinnedToNamespaceTree and set it to 0.
- Restart Explorer.
Undo: Delete the CLSID key or set the DWORD to 1.
If a future update changes the Gallery CLSID or pinning behavior, this key may no longer apply; verify if the change has no effect.
6. Remove the OneDrive Page from the Left Pane
OneDrive integration remains visible even for users who don’t rely on Microsoft’s cloud storage. Hiding the node removes it from the navigation pane while keeping the OneDrive client installed and functional.
Steps (per‑user):
- Open regedit and go to HKEY_CURRENT_USER\Software\Classes\CLSID (or HKEY_CLASSES_ROOT\CLSID for system‑wide changes, but per‑user is safer).
- Create a new key named {018D5C66-4533-4307-9B53-224DE2ED1FE6}.
- Add a DWORD value System.IsPinnedToNameSpaceTree set to 0.
- Restart Explorer.
Undo: Delete the CLSID key or set the DWORD back to 1.
This method is directly endorsed by Microsoft’s own support forums. A user who asked how to remove the OneDrive folder from File Explorer received the exact registry path from an expert, confirming its validity and safety. Apply the tweak under your intended user account—doing so from an elevated prompt may accidentally target a different HKCU hive.
7. Enable the Classic (Legacy) Context Menu
Windows 11’s modern context menu hides many traditional commands behind a “Show more options” click. This tweak forces Explorer to always show the full Windows 10‑style classic menu, returning instant access to all context‑menu entries.
Steps:
- Go to HKEY_CURRENT_USER\SOFTWARE\CLASSES\CLSID.
- Create a key named {86ca1aa0-34aa-4e8b-a509-50c905bae2a2}.
- Inside it, create a subkey named InprocServer32.
- Set the (Default) string value in InprocServer32 to a blank value (empty data).
- Restart Explorer.
Command‑line alternative:
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /ve /t REG_SZ /d "" /f
Undo: Delete the {86ca1aa0-...} key under HKCU\Software\Classes\CLSID.
Microsoft notes that this kind of Registry masking can have unintended consequences, and future Windows updates might alter the behavior. Always back up the key before applying, and test under a single user profile first.
8. Speed Up Folder Browsing: Force “NotSpecified” Folder Type
Explorer’s automatic folder‑type detection is a frequent source of lag, especially in directories with thousands of media files or mixed content. By forcing all folders to use the generic “NotSpecified” template, you eliminate the probing that occurs when Explorer tries to determine if a folder contains pictures, music, or documents.
Steps:
- Navigate to HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell.
- Create a new String value (REG_SZ) named FolderType and set its data to NotSpecified.
- Restart Explorer.
Command‑line:
reg add "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell" /v FolderType /t REG_SZ /d NotSpecified /f
Undo: Delete the FolderType string or remove the entire Bags\AllFolders subtree.
Community tests show noticeable performance gains on systems with large photo libraries, huge download folders, or complex file structures. The trade‑off is that specialized views—such as thumbnail‑heavy photo layouts—will be replaced by a generic list view. If you rely on those views, test on a few folders before committing globally.
Practical Tips, Batch Commands, and Automation
For users who want to apply multiple “Block” entries quickly, a single reg command can chain several value additions. In administrative or imaging scenarios, deploy per‑user Group Policy Preferences or a logon script that writes the HKCU keys. Many community guides offer ready‑made .reg files for both application and rollback—use only those from trusted authors and inspect the contents before merging. If a tweak doesn’t seem to take effect, restart the Explorer process from Task Manager rather than rebooting; it’s faster and isolates the change.
What You Gain: Benefits at a Glance
- Faster right‑click menus with reduced clutter thanks to blocked shell extensions.
- A cleaner navigation pane with unused pages like Gallery and OneDrive hidden.
- Restored classic context menu that shows all commands without extra clicks.
- Quicker folder loading because Explorer no longer sniffs content types.
These improvements are particularly valuable for power users, IT professionals, and anyone who works with large local directories daily.
Risks, Compatibility, and Long‑Term Maintenance
Registry edits are powerful and can break functionality if applied incorrectly. Always export keys before editing and keep an undo script handy. Microsoft may change CLSIDs or internal implementation details in future updates; a blocked GUID may become invalid or a new app may add a different identifier. Re‑check your tweaks after major Windows releases. Scope matters: HKCU edits are per‑user, so apply them under the account that needs them, and be aware that running commands from an elevated prompt can target a different HKCU hive. Some changes may hide genuinely useful integrations—consider whether you’ll need a feature before hiding it.
Quick Undo Checklist
- Blocked entries: Delete the GUID strings from
HKCU\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked. - CLSID visibility changes: Delete the created CLSID key under
HKCU\Software\Classes\CLSID\{…}. - Classic menu revert: Run
reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f. - FolderType revert: Delete
FolderTypefromHKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell.
When to Tweak and When to Leave Things Alone
Apply these tweaks if you:
- Frequently open folders containing thousands of files and notice slow rendering.
- Want a minimal, classic context menu with all options immediately visible.
- Prefer a decluttered Explorer left pane without uninstalling apps.
Avoid these tweaks if you:
- Rely daily on Gallery or OneDrive integration in File Explorer.
- Actively use Clipchamp or Paint context‑menu entries.
- Are on a managed corporate machine where policy dictates certain integrations—consult your IT department first.
These eight Registry tweaks put you firmly in control of File Explorer’s behavior. They remove distractions, speed up common tasks, and restore the straightforward efficiency many users miss from earlier Windows versions. Back up your system, change one thing at a time, and enjoy a cleaner, faster browsing experience.