How to get "Open Command Window Here" while clicking on exe not on parent folder?

One can open dos command window by shift-clicking on a folder but I'd rather like to do so by shift clicking on exe INSIDE the folder.

Any registry hack to do so like this one but on exe instead of folder:

http://www.networksteve.com/?p=2308


Use Notepad to paste this into an empty .REG file, then save and double-click the file:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Classes\exefile]

[HKEY_CURRENT_USER\Software\Classes\exefile\shell]

[HKEY_CURRENT_USER\Software\Classes\exefile\shell\cmdhere]
@="Command Prompt Here"

[HKEY_CURRENT_USER\Software\Classes\exefile\shell\cmdhere\command]
@="cmd.exe"

(it adds a context menu entry for executables; tested on XP)