ANAVEM
Languagefr
Fix Windows 11 Context Menu Show More Options – File Explorer 2026
Fix GuideN/AWindows 11 File Explorer

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.

Emanuel DE ALMEIDAEmanuel DE ALMEIDA
March 18, 2026 12 min 0
N/AWindows 11 File Explorer 5 methods 12 min
Instant Solution

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.

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

Diagnostic

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
Analysis

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
Resolution Methods

Solutions

01

Registry Command Line Fix

This is the fastest method using a single command to modify the registry.

  1. Press Windows + R to open the Run dialog
  2. Type cmd and press Ctrl + Shift + Enter to open Command Prompt as administrator
  3. Click Yes when prompted by User Account Control
  4. Run the following command to disable the condensed context menu:
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
  1. Press Enter to execute the command
  2. You should see "The operation completed successfully"
  3. Restart File Explorer by running:
taskkill /f /im explorer.exe && start explorer.exe
Pro tip: This method creates an empty registry key that tells Windows to use the legacy context menu handler.
02

PowerShell Registry Modification

Use PowerShell for more advanced registry manipulation with error handling.

  1. Right-click the Start button and select Windows Terminal (Admin)
  2. If PowerShell doesn't open by default, type powershell and press Enter
  3. 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
  1. Press Enter to execute the script
  2. Restart File Explorer:
Stop-Process -Name explorer -Force; Start-Process explorer
Warning: Always run PowerShell as administrator when modifying system registry keys.
03

Manual Registry Editor Method

Use Registry Editor for manual control and verification of changes.

  1. Press Windows + R and type regedit, then press Enter
  2. Click Yes when prompted by User Account Control
  3. Navigate to the following path:
HKEY_CURRENT_USER\Software\Classes\CLSID
  1. Right-click on CLSID and select NewKey
  2. Name the new key: {86ca1aa0-34aa-4e8b-a509-50c905bae2a2}
  3. Right-click on the newly created key and select NewKey
  4. Name this key: InprocServer32
  5. Click on the InprocServer32 key
  6. In the right pane, double-click (Default)
  7. Leave the Value data field empty and click OK
  8. Close Registry Editor
  9. Press Ctrl + Shift + Esc to open Task Manager
  10. Find Windows Explorer in the process list
  11. Right-click it and select Restart
Pro tip: You can bookmark this registry location for future modifications by adding it to Registry Editor favorites.
04

Group Policy Method (Pro/Enterprise)

For Windows 11 Pro and Enterprise users, use Group Policy for system-wide changes.

  1. Press Windows + R and type gpedit.msc, then press Enter
  2. Navigate to: User ConfigurationAdministrative TemplatesWindows ComponentsFile Explorer
  3. Look for policies related to context menu behavior (note: specific policies may vary by Windows 11 version)
  4. If no direct policy exists, use the registry method through Group Policy:
  5. Navigate to: User ConfigurationPreferencesWindows SettingsRegistry
  6. Right-click in the right pane and select NewRegistry Item
  7. 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)
  1. Click OK to save the policy
  2. Run gpupdate /force in Command Prompt to apply changes immediately
Warning: Group Policy changes affect all users on the system. Test in a controlled environment first.
05

Batch Script for Multiple Systems

Create a reusable batch script for deploying across multiple Windows 11 systems.

  1. Open Notepad as administrator
  2. 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
  1. Save the file as Fix_Context_Menu.bat on your desktop
  2. Right-click the batch file and select Run as administrator
  3. The script will automatically apply the fix and restart File Explorer
  4. 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
Pro tip: Add logging to the batch script by redirecting output to a log file for deployment tracking.
Validation

Verification

To confirm the fix worked correctly, perform these verification steps:

  1. Right-click on any file or folder in File Explorer
  2. Verify that you see the full traditional context menu immediately without needing to click 'Show more options'
  3. 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
  4. Test on the desktop by right-clicking empty space
  5. 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.

If it still fails

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:

  1. Ensure you're modifying HKEY_CURRENT_USER not HKEY_LOCAL_MACHINE
  2. Log off and log back in instead of just restarting Explorer
  3. Clear icon cache: ie4uinit.exe -show
  4. Rebuild icon cache completely by deleting %localappdata%\IconCache.db and rebooting

Context Menu Still Shows 'Show More Options'

If the condensed menu persists:

  1. Check if third-party shell extensions are interfering
  2. Boot into Safe Mode and test the fix
  3. Use sfc /scannow to check for system file corruption
  4. Try the fix for all users by modifying HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID instead

Reverting Changes

To restore the Windows 11 default condensed context menu:

reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f

Then restart File Explorer or reboot the system.

Frequently Asked Questions

Will disabling the Windows 11 context menu affect system stability or performance?+
No, disabling the condensed context menu is completely safe and has no impact on system stability or performance. This modification only changes which context menu handler Windows uses—it doesn't remove or disable any functionality. The registry change simply tells Windows to use the traditional context menu system instead of the new condensed one. All your applications and context menu integrations will continue to work normally.
Can I apply this fix to all users on a computer or just my account?+
The methods shown primarily affect the current user account (HKEY_CURRENT_USER). To apply the fix system-wide for all users, modify the registry under HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID instead, or use Group Policy for domain environments. For enterprise deployment, consider using Microsoft Intune, SCCM, or Group Policy preferences to deploy the registry change across multiple systems.
What happens if I want to revert back to the Windows 11 condensed context menu?+
Reverting is simple—just delete the registry key you created. Run this command as administrator: 'reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f' then restart File Explorer. This removes the override and restores Windows 11's default condensed context menu behavior. The change takes effect immediately after restarting Explorer or rebooting.
Does this modification work with third-party context menu extensions?+
Yes, this fix actually improves compatibility with third-party context menu extensions. Many older applications and shell extensions were designed for the traditional context menu and may not appear properly in Windows 11's condensed menu. By restoring the full context menu, you ensure that all your installed applications' context menu items are immediately visible and accessible without additional clicks.
Will Windows Updates undo this context menu modification?+
Generally, Windows Updates do not revert this registry modification because it's a user preference setting rather than a system file change. However, major feature updates (like 22H2 to 23H2) might occasionally reset some user preferences. If this happens, simply re-apply the fix using any of the methods described. Consider creating a batch script or PowerShell script to quickly reapply the change if needed after major updates.
Emanuel DE ALMEIDA
Written by

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.

Discussion

Share your thoughts and insights

You must be logged in to comment.

Loading comments...