add menu items to SHIFT + right click menu on Windows

14

4

The point is to add right click menu items only for shift+right click. Don't even bother: regular right click is all over the web, but i want to add some items that wouldn't clutter my right click.

here's how to add "Open Command Window Here" for right click menu. What do I need to modify to add it only to shift+right click?

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\CommandPrompt]
@="Open Command Window Here"
[HKEY_CLASSES_ROOT\Directory\shell\CommandPrompt\command]
@="cmd.exe /k pushd %L"

(Yes, I know, that's exactly what win7 does).

Pavel P

Posted 2012-07-26T01:19:03.080

Reputation: 1 558

Answers

12

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\CommandPrompt]
@="Open Command Window Here"
"Extended"=""

[HKEY_CLASSES_ROOT\Directory\shell\CommandPrompt\command]
@="cmd.exe /k pushd %L"

Note the "Extended"="" command on the fourth line.

surfasb

Posted 2012-07-26T01:19:03.080

Reputation: 21 453

3

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\CommandPrompt]
@="Open Command Window Here"
"Extended"=""

[HKEY_CLASSES_ROOT\Directory\Background\shell\CommandPrompt\command]
@="cmd.exe /k pushd %L"

You probably want to add to the Background

Steven

Posted 2012-07-26T01:19:03.080

Reputation: 31

welcome to superuser, but as you can see the question had been answered half a year ago ;) – Pavel P – 2013-12-12T22:59:31.350

yea the answer wasn't working for me and once I changed the background one it seemed to work. I'm glad you asked this question because it was a good starting point. – Steven – 2013-12-13T02:05:38.270

1

While searching for solutions on how I can add the command to regular right click, i stumbled upon this question. I already had the solution to open the command prompt window on shift+right click and I feel like I should share it, since it's a bit different than the ones mentioned here.

Windows Registry Editor Version 5.00

; show OpenCmdWindow when shift+right click
[HKEY_CLASSES_ROOT\Directory\shell\cmd]
"HideBasedOnVelocityId"=-
"ShowBasedOnVelocityId"=dword:00639bc8

I also noticed that you need permissions for changing the values in HKEY_CLASSES_ROOT\Directory\Background\shell. I use SetACL to modify permissions from command line.

Gašper Čefarin

Posted 2012-07-26T01:19:03.080

Reputation: 88