How to add your Name in Desktop Context Menu in Windows 7 and later


UPDATE: This tutorial will also work in Windows 8 and later OS versions.



Download Best Computer Guide Android App



You can add your name at top of the menu and can open any program, Explorer, Documents folder or User Accounts by clicking on it.

So here is the step-by-step guide:

Step 1 : Type regedit in RUN or Start Menu search box and press Enter. It’ll open Registry Editor.

Step 2 : Now go to:

HKEY_CLASSES_ROOT\DesktopBackground\Shell

Step 3 : Now we’ll need to create a new key under “Shell” key. Right-click on “Shell” key and select “New -> Key“. Give the new key any desired name e.g. “Name” (without quotes).

Step 4 : Now in right-side pane, change value of “Default” to your desired name which you want to show in Desktop context menu. We have chosen ~:: MANISH ::~ in our example.

Step 5 : Now right-click on the new key which we created in step 3, e.g. Name and select “New -> Key“. Give the new key name of command.

Step 6 : In right-side pane, change value of “Default” to explorer.exe if you want to open Explorer by clicking on it. We have chosen Control userpasswords to open User Accounts applet in our example.

Step 7 : To set an icon for the shortcut, select the key created in Step 3 and in right-side pane, create a new String value “Icon“. Set its value to your desired icon. We have set it to imageres.dll, 206 in our example.

To set its position in the context menu, create a new String value “Position” and set its value to:

We have set it at top.



Step 8 : That’s it. Now you can have your name with an icon in Desktop context menu.

PS. If you want a ready-made registry script to do the task automatically, then copy paste following code in Notepad and save the file with name “ANYTHING.REG” (including quotes).

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\DesktopBackground\Shell\name]
@=”~:: MANISH ::~”
“Icon”=”imageres.dll,206”
“Position”=”Top”

[HKEY_CLASSES_ROOT\DesktopBackground\Shell\name\command]
@=”Control userpasswords”

Run the file and it’ll add the program shortcut in Desktop context menu.

To change the name, icon or associated application path,simply change the BOLD part in the script.

DONE…

No comments:

Post a Comment