Click here to Skip to main content
15,883,767 members
Articles / Programming Languages / C#
Article

Add a context menu to the Windows Explorer

Rate me:
Please Sign up or sign in to vote.
4.67/5 (39 votes)
12 Apr 20051 min read 368K   13.1K   148   74
Add a context menu to the Windows Explorer using Registry only.

Image 1

Image 2

Introduction

Many of us like the convenience of the context menus in Windows Explorer and hate typing long paths in the command prompt window. This tool is going to address this issue by adding a new item on the context menu when you right click on a folder. You could get a command prompt that will open in the parent directory and not elsewhere. If you are not interested in the command prompt, then you can specify another executable of your choice as the target and still save some clicks and typing.

Background

Dealing with Explorer usually requires some shell programming that is not always nice. Fortunately, the hack I'm going to describe would merely set some registry entries to make this happen.

Using the code

The registry entries are the following:

C#
private const string MenuName = "Folder\\shell\\NewMenuOption";
private const string Command = "Folder\\shell\\NewMenuOption\\command";

The code is self-explanatory and it merely sets the registry:

C#
private void btnAddMenu_Click(object sender, System.EventArgs e)
{
    RegistryKey regmenu = null;
    RegistryKey regcmd = null;
    try
    {
        regmenu = Registry.ClassesRoot.CreateSubKey(MenuName);
        if(regmenu != null)
            regmenu.SetValue("",this.txtName.Text);
        regcmd = Registry.ClassesRoot.CreateSubKey(Command);
        if(regcmd != null)
                regcmd.SetValue("",this.txtPath.Text);
    }
    catch(Exception ex)
    {
        MessageBox.Show(this,ex.ToString());
    }
    finally       
    {
        if(regmenu != null)
            regmenu.Close();
        if(regcmd != null)
            regcmd.Close();
    }        
}

Or it deletes the settings if you don't like them anymore:

C#
private void btnRemoveMenu_Click(object sender, System.EventArgs e)
{
    try
    {
        RegistryKey reg = Registry.ClassesRoot.OpenSubKey(Command);
        if(reg != null)
        {
            reg.Close();
            Registry.ClassesRoot.DeleteSubKey(Command);
        }
        reg = Registry.ClassesRoot.OpenSubKey(MenuName);
        if(reg != null)
        {
            reg.Close();
            Registry.ClassesRoot.DeleteSubKey(MenuName);
        }
    }
    catch(Exception ex)
    {
        MessageBox.Show(this,ex.ToString());
    }
}

The rest of the code only provides a sane user interface.

Points of Interest

You obviously have all the rights to change the Registry for this application to run as desired.

History

  • 12th April, 2005 - version 1.0.0.0.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
United States United States
Decebal Mihailescu is a software engineer with interest in .Net, C# and C++.

Comments and Discussions

 
GeneralRe: How to retrieve the selected folder name? Pin
Mostafa Elsadany25-Jan-11 8:36
Mostafa Elsadany25-Jan-11 8:36 
QuestionHow can we link our exe file while right click the menu item Pin
giji gangadharan11-Jan-10 21:44
giji gangadharan11-Jan-10 21:44 
AnswerRe: How can we link our exe file while right click the menu item Pin
dmihailescu12-Jan-10 12:56
dmihailescu12-Jan-10 12:56 
AnswerRe: How can we link our exe file while right click the menu item Pin
ThierryVdV14-Jun-10 23:06
ThierryVdV14-Jun-10 23:06 
QuestionAdd Icon to the menu item Pin
sk ghouse10-Sep-09 0:44
sk ghouse10-Sep-09 0:44 
GeneralAdd icon to the menu Pin
Member 441027127-Apr-09 14:57
Member 441027127-Apr-09 14:57 
Generaladding file,edit,view,help menus to an windows application Pin
aurosikhadas1-Oct-08 1:15
aurosikhadas1-Oct-08 1:15 
GeneralIs it possible only windows xp and not 2000 Pin
hesaigo999ca24-Jul-08 3:38
hesaigo999ca24-Jul-08 3:38 
Maybe registry keys are diff. for the setting of, when you go and set it inside windows 2000, I tried on mine and was not able to make it work.
Is your pc a xp or 2000?
GeneralRe: Is it possible only windows xp and not 2000 Pin
dmihailescu24-Jul-08 12:52
dmihailescu24-Jul-08 12:52 
GeneralIt doesn't work for me [modified] Pin
Royce Fickling18-Jul-08 5:18
Royce Fickling18-Jul-08 5:18 
GeneralRe: It doesn't work for me Pin
wrschmid20-Nov-08 5:18
wrschmid20-Nov-08 5:18 
GeneralRe: It doesn't work for me Pin
Codemonkey853-Dec-08 3:25
Codemonkey853-Dec-08 3:25 
GeneralRe: It doesn't work for me Pin
dmihailescu3-Dec-08 13:08
dmihailescu3-Dec-08 13:08 
GeneralRe: It doesn't work for me Pin
Codemonkey853-Dec-08 13:42
Codemonkey853-Dec-08 13:42 
QuestionIs it possible to added a menu hierarchy? Pin
maxx_delusional6-Jun-08 10:26
maxx_delusional6-Jun-08 10:26 
AnswerRe: Is it possible to added a menu hierarchy? Pin
dmihailescu6-Jun-08 13:25
dmihailescu6-Jun-08 13:25 
GeneralRe: Is it possible to added a menu hierarchy? Pin
Goran _2-Jul-08 11:43
Goran _2-Jul-08 11:43 
GeneralRegistry Entry throught Setup And Deployment Project Pin
MohantaD23-Nov-07 6:57
MohantaD23-Nov-07 6:57 
GeneralRe: Registry Entry throught Setup And Deployment Project Pin
dmihailescu6-Jun-08 13:27
dmihailescu6-Jun-08 13:27 
GeneralRe: Clicking on drive Pin
dae220009-Oct-07 10:58
dae220009-Oct-07 10:58 
Questioncontext menu in applications (notepad, word ..) [modified] Pin
balu23419-Sep-07 0:11
balu23419-Sep-07 0:11 
AnswerRe: context menu in applications (notepad, word ..) Pin
dmihailescu20-Sep-07 4:53
dmihailescu20-Sep-07 4:53 
QuestionRe: context menu in applications (notepad, word ..) Pin
balu23420-Sep-07 18:52
balu23420-Sep-07 18:52 
QuestionContext menu order Pin
twsabonrai19-Feb-07 3:50
twsabonrai19-Feb-07 3:50 
QuestionCommand arguments Pin
Mith-Randir26-Sep-06 3:49
Mith-Randir26-Sep-06 3:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.