The fastest solution is to run a registry command to disable the condensed context menu. Open Command Prompt as administrator and run: reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve then restart File Explorer or reboot your system.

Fix Windows 11 Context Menu Show More Options – File Explorer 2026
Disable the condensed Windows 11 context menu to restore the full right-click menu without clicking 'Show more options' using registry modifications and command-line tools.
Windows 11 Context Menu Modification Overview
Windows 11 introduced a redesigned context menu system that condenses the traditional right-click menu into a modern, simplified interface. When you right-click on files, folders, or desktop items, Windows 11 displays a streamlined menu with basic options and requires an additional click on 'Show more options' to access the full traditional context menu that Windows users have relied on for decades.
This design change, while intended to modernize the user experience and improve touch-screen usability, has frustrated many power users and IT professionals who frequently access advanced context menu options. The extra click required to reach commonly used functions like 'Send to', detailed 'Properties', or third-party application integrations significantly impacts workflow efficiency.
The condensed context menu behavior is controlled by specific registry entries that can be modified to restore the traditional full context menu experience. Unlike many Windows 11 interface changes, this particular modification doesn't require third-party tools or complex system alterations—it can be accomplished through standard registry modifications that are fully supported and reversible.
Related: How to Add or Remove Folders under This PC in Windows 11
Related: How to Add or Remove OneDrive from File Explorer Navigation
Related: Microsoft confirms ongoing Windows 11 File Explorer flash
Symptoms
- Right-clicking items shows a condensed context menu with limited options
- Must click 'Show more options' to access full context menu
- Traditional context menu items are hidden behind additional clicks
- Reduced productivity when frequently accessing context menu options
- Shift+F10 or Shift+Right-click required for full menu access
Root Causes
- Windows 11 default design change to modernize the user interface
- Microsoft's attempt to simplify context menus for touch-friendly devices
- Registry settings that control context menu behavior are set to default values
- Shell integration changes in Windows 11 compared to Windows 10
- No built-in Settings option to disable the condensed menu
Solutions
Registry Command Line Fix
This is the fastest method using a single command to modify the registry.
- Press Windows + R to open the Run dialog
- Type
cmdand press Ctrl + Shift + Enter to open Command Prompt as administrator - Click Yes when prompted by User Account Control
- Run the following command to disable the condensed context menu:
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve- Press Enter to execute the command
- You should see "The operation completed successfully"
- Restart File Explorer by running:
taskkill /f /im explorer.exe && start explorer.exePowerShell Registry Modification
Use PowerShell for more advanced registry manipulation with error handling.
- Right-click the Start button and select Windows Terminal (Admin)
- If PowerShell doesn't open by default, type
powershelland press Enter - Run the following PowerShell script:
$regPath = "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32"
if (!(Test-Path $regPath)) {
New-Item -Path $regPath -Force | Out-Null
Write-Host "Registry key created successfully" -ForegroundColor Green
} else {
Write-Host "Registry key already exists" -ForegroundColor Yellow
}
Set-ItemProperty -Path $regPath -Name "(Default)" -Value "" -Force
Write-Host "Context menu modification completed" -ForegroundColor Green- Press Enter to execute the script
- Restart File Explorer:
Stop-Process -Name explorer -Force; Start-Process explorerManual Registry Editor Method
Use Registry Editor for manual control and verification of changes.
- Press Windows + R and type
regedit, then press Enter - Click Yes when prompted by User Account Control
- Navigate to the following path:
HKEY_CURRENT_USER\Software\Classes\CLSID- Right-click on CLSID and select New → Key
- Name the new key:
{86ca1aa0-34aa-4e8b-a509-50c905bae2a2} - Right-click on the newly created key and select New → Key
- Name this key:
InprocServer32 - Click on the InprocServer32 key
- In the right pane, double-click (Default)
- Leave the Value data field empty and click OK
- Close Registry Editor
- Press Ctrl + Shift + Esc to open Task Manager
- Find Windows Explorer in the process list
- Right-click it and select Restart
Group Policy Method (Pro/Enterprise)
For Windows 11 Pro and Enterprise users, use Group Policy for system-wide changes.
- Press Windows + R and type
gpedit.msc, then press Enter - Navigate to: User Configuration → Administrative Templates → Windows Components → File Explorer
- Look for policies related to context menu behavior (note: specific policies may vary by Windows 11 version)
- If no direct policy exists, use the registry method through Group Policy:
- Navigate to: User Configuration → Preferences → Windows Settings → Registry
- Right-click in the right pane and select New → Registry Item
- Configure the following settings:
- Action: Create
- Hive: HKEY_CURRENT_USER
- Key Path: Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32
- Value name: (Default)
- Value type: REG_SZ
- Value data: (leave empty)
- Click OK to save the policy
- Run
gpupdate /forcein Command Prompt to apply changes immediately
Batch Script for Multiple Systems
Create a reusable batch script for deploying across multiple Windows 11 systems.
- Open Notepad as administrator
- Copy and paste the following batch script:
@echo off
echo Disabling Windows 11 condensed context menu...
echo.
REM Create registry key to disable Show more options
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve >nul 2>&1
if %errorlevel% equ 0 (
echo Registry modification successful.
echo Restarting File Explorer...
taskkill /f /im explorer.exe >nul 2>&1
start explorer.exe
echo.
echo Context menu fix applied successfully!
echo You should now see the full context menu when right-clicking.
) else (
echo Error: Failed to modify registry.
echo Please run this script as administrator.
)
echo.
pause- Save the file as
Fix_Context_Menu.baton your desktop - Right-click the batch file and select Run as administrator
- The script will automatically apply the fix and restart File Explorer
- For deployment, you can run this script via:
- Group Policy startup/logon scripts
- Microsoft Intune or other MDM solutions
- SCCM software deployment
- PowerShell remoting for multiple systems
Verification
To confirm the fix worked correctly, perform these verification steps:
- Right-click on any file or folder in File Explorer
- Verify that you see the full traditional context menu immediately without needing to click 'Show more options'
- Check that all context menu items are visible, including:
- Cut, Copy, Paste options
- Send to submenu
- Properties at the bottom
- Third-party application context menu entries
- Test on the desktop by right-clicking empty space
- Verify the change persists after system reboot
To verify the registry change was applied correctly, run:
reg query "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32"You should see the key exists with an empty default value.
Advanced Troubleshooting
If the above methods didn't work or you encounter issues:
Registry Key Not Taking Effect
Some users report the registry change doesn't apply immediately. Try these steps:
- Ensure you're modifying
HKEY_CURRENT_USERnotHKEY_LOCAL_MACHINE - Log off and log back in instead of just restarting Explorer
- Clear icon cache:
ie4uinit.exe -show - Rebuild icon cache completely by deleting
%localappdata%\IconCache.dband rebooting
Context Menu Still Shows 'Show More Options'
If the condensed menu persists:
- Check if third-party shell extensions are interfering
- Boot into Safe Mode and test the fix
- Use
sfc /scannowto check for system file corruption - Try the fix for all users by modifying
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSIDinstead
Reverting Changes
To restore the Windows 11 default condensed context menu:
reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /fThen restart File Explorer or reboot the system.
Frequently Asked Questions
Will disabling the Windows 11 context menu affect system stability or performance?+
Can I apply this fix to all users on a computer or just my account?+
What happens if I want to revert back to the Windows 11 condensed context menu?+
Does this modification work with third-party context menu extensions?+
Will Windows Updates undo this context menu modification?+
Emanuel DE ALMEIDA
Microsoft MCSA-certified Cloud Architect | Fortinet-focused. I modernize cloud, hybrid & on-prem infrastructure for reliability, security, performance and cost control - sharing field-tested ops & troubleshooting.
Further Intelligence
Deepen your knowledge with related resources
Discussion
Share your thoughts and insights
You must be logged in to comment.


