Blame

dec43e RemcoS 2025-10-30 11:09:17 1
# Windows context menu switching
2
3
### From windows 11 to Windows 10
4
5
```shell
6
:: Set "Old" Explorer Context Menu as Default
7
reg add "HKEY_CURRENT_USER\SOFTWARE\CLASSES\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /ve /f
8
9
:: Remove Explorer "Command Bar"
10
reg add "HKCU\Software\Classes\CLSID\{d93ed569-3b3e-4bff-8355-3c44f6a52bb5}\InprocServer32" /f /ve
11
12
:: Restart Windows Explorer. (Applies the above settings without needing a reboot)
13
taskkill /f /im explorer.exe
14
start explorer.exe
15
16
:: Empty Comment (Prevents you from having to press "enter" to execute the line to restart explorer.exe)
17
```
18
19
---
20
### From windows 10 to windows 11
21
22
```shell
23
:: Restore Win 11 Explorer Context Menu
24
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
25
26
:: Restore Win 11 Explorer Command Bar
27
reg.exe delete "HKCU\Software\Classes\CLSID\{d93ed569-3b3e-4bff-8355-3c44f6a52bb5}" /f
28
29
:: Restart Windows Explorer. (Applies the above settings without needing a reboot)
30
taskkill /f /im explorer.exe
31
start explorer.exe
32
33
:: Empty Comment (Prevents you from having to press "enter" to execute the line to restart explorer.exe)
34
```
35
36
##### disclaimer
37
I got this from somewhere on the internet, but stored it without source... my bad!