Files

11 lines
414 B
Batchfile
Raw Permalink Normal View History

REM This script switches the right-click context menu to Windows 11 style
REM by modifying the registry and restarting Windows Explorer
REM Delete registry entry to enable Windows 11 context menu
2025-08-08 09:55:22 +08:00
reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
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