Files

11 lines
428 B
Batchfile
Raw Permalink Normal View History

REM This script switches the right-click context menu to Windows 10 style
REM by modifying the registry and restarting Windows Explorer
REM Add registry entry to disable Windows 11 context menu
2025-08-08 09:55:22 +08:00
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
REM Terminate Windows Explorer process
2025-08-08 09:55:22 +08:00
taskkill /f /im explorer.exe
REM Restart Windows Explorer to apply changes
2025-08-08 09:55:22 +08:00
start explorer.exe