Skip to content

Instantly share code, notes, and snippets.

@djonasdev
Created April 24, 2024 06:24
Show Gist options
  • Save djonasdev/8fe037c95371681f0d92c810e9a3c565 to your computer and use it in GitHub Desktop.
Save djonasdev/8fe037c95371681f0d92c810e9a3c565 to your computer and use it in GitHub Desktop.
Restore the old Context Menu in Windows 11
@echo off
echo Restore the old Context Menu in Windows 11
rem https://answers.microsoft.com/en-us/windows/forum/all/restore-old-right-click-context-menu-in-windows-11/a62e797c-eaf3-411b-aeec-e460e6e5a82a
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
rem check for any errors
if %errorlevel% equ 0 (
echo Old Context Menu successfully restored
) else (
echo Error: Failed to restore old Context Menu
)
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment