Remove "Search Everything" from Recycle Bin Context Menu
Remove "Search Everything" from Recycle Bin Context Menu
New user here. I don't see an option to remove the Everything item in the Recycle Bin's context menu. Thanks.
Re: Remove "Search Everything" from Recycle Bin Context Menu
There is no such option.
Everything add a key to the registry here HKEY_CLASSES_ROOT\Folder\shell
and adding it there,applies to folders,my computer and drives
I disable that option
Option=>Tools=>General=>Show shell context menus
and add the keys manually to
HKEY_CLASSES_ROOT\Directory\shell\
HKEY_CLASSES_ROOT\Drive\shell\
Everything add a key to the registry here HKEY_CLASSES_ROOT\Folder\shell
and adding it there,applies to folders,my computer and drives
I disable that option
Option=>Tools=>General=>Show shell context menus
and add the keys manually to
HKEY_CLASSES_ROOT\Directory\shell\
HKEY_CLASSES_ROOT\Drive\shell\
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\Search...\command]
@="\"C:\\Program Files\\Tools\\Everything\\Everything.exe\" -newwindow -filename \"%1\""
[HKEY_CLASSES_ROOT\Drive\shell\Search...\command]
@="\"C:\\Program Files\\Tools\\Everything\\Everything.exe\" -newwindow -filename \"%1\""
Re: Remove "Search Everything" from Recycle Bin Context Menu
thanks for the info. Will give that a shot tonightvsub wrote:There is no such option.
Everything add a key to the registry here HKEY_CLASSES_ROOT\Folder\shell
and adding it there,applies to folders,my computer and drives
I disable that option
Option=>Tools=>General=>Show shell context menus
and add the keys manually to
HKEY_CLASSES_ROOT\Directory\shell\
HKEY_CLASSES_ROOT\Drive\shell\
Code: Select all
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\shell\Search...\command] @="\"C:\\Program Files\\Tools\\Everything\\Everything.exe\" -newwindow -filename \"%1\"" [HKEY_CLASSES_ROOT\Drive\shell\Search...\command] @="\"C:\\Program Files\\Tools\\Everything\\Everything.exe\" -newwindow -filename \"%1\""