11 lines
428 B
Batchfile
11 lines
428 B
Batchfile
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
|
|
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
|
|
|
|
REM Terminate Windows Explorer process
|
|
taskkill /f /im explorer.exe
|
|
|
|
REM Restart Windows Explorer to apply changes
|
|
start explorer.exe |