I know how to add a context menu for when you click on an actual folder:
[HKEY_CLASSES_ROOT\Directory\shell\commandNameHere]
but what about clicking on nothing in a folder?
like I make a new folder on my desktop, double click to enter the folder, then right click on nothing (the folder is empty), now I want my context menu to appear in this situation.
HKEY_CLASSES_ROOT\Directory\Background– Amazed May 1 '12 at 18:38[HKEY_CLASSES_ROOT\Directory\Background\shell\commandNameHere]– xero May 1 '12 at 18:54Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\Directory\Shell]@="none"` `[HKEY_CLASSES_ROOT\Directory\shell\gitBashHere][HKEY_CLASSES_ROOT\Directory\Background\shell\gitBashHere]"Icon"="C:\\icons\\git-gui.ico""MUIVerb"="git bash here""Position"="bottom"` `[HKEY_CLASSES_ROOT\Directory\shell\gitBashHere\command][HKEY_CLASSES_ROOT\Directory\Background\shell\gitBashHere\command]@="C:\\Program Files\\Console2\\Console.exe -d %v"– xero May 1 '12 at 19:07