Right-click on any directory and have the menu include my program. How in NSIS?
I want to be able to open my program by right-clicking on any directory in Windows.. I know Winzip does this, how can I do it through NSIS on install?
2 posts
WriteRegStr HKCR "Directory\\shell\\mycommand" "" "my command name"
WriteRegStr HKCR "Directory\\shell\\mycommand\\command" "" '"c:\\program files\\my program dir\\program to run.exe" %1' Your program will start with the right clicked directory as its command line parameter.