AlexandruC
AlexandruC

Reputation: 3637

How can I add a context menu for recycle bin

How can I manage to add a context menu for windows recycle bin? And how could I eventually access the files within? I know Recycle bin is a virtual folder and that it has a tree-like structure, do I have to go all the way to access the files within?

edited:

HKLM
{
NoRemove Software
{
    NoRemove Classes 
    {
        NoRemove CLSID
        {
            NoRemove {645FF040-5081-101B-9F08-00AA002F954E}
            {
                NoRemove shellex
                {
                    NoRemove ContextMenuHandlers
                    {
                        ForceRemove {FC944A65-4422-4A2C-B867-1BA01318A944}
                    }
                }
            }
        }
     }      
   }
}   

Upvotes: 0

Views: 1310

Answers (1)

Remy Lebeau
Remy Lebeau

Reputation: 596592

Look at the following Registry keys:

HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\Shell
HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellEx

For what you are attempting, you will likely have to write a Context Menu Shell Extension and register it in the ShellEx key.

Creating Shell Extension Handlers

Creating Shortcut Menu Handlers

Upvotes: 2

Related Questions