In XYplorer, I see this (64- as well as 32-bit context menu):
Why aren't these TEST_ context-menu entries shown in XYplorer? (mostly out-of-the-box settings, btw)
The TEST entries of the context menu can be generated with the following command on an (elevated) CMD prompt:
Code: Select all
@for %a in ("HKCU" "HKLM") DO @for %b in ("Directory" "Folder") DO @for %c in ("32" "64") Do reg.exe add "%~a\Software\Classes\%~b\Background\Shell\TEST_%~a_%~b_%~c\command" /ve /D "notepad.exe" /F /reg:%~c
To remove these entries:
Code: Select all
@for %a in ("HKCU" "HKLM") DO @for %b in ("Directory" "Folder") DO @for %c in ("32" "64") Do reg.exe delete "%~a\Software\Classes\%~b\Background\Shell\TEST_%~a_%~b_%~c"
XYplorer Beta Club