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?
Archive: Right-click on any directory and have the menu include my program. How in NSIS?
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?
[edit]
This is also possible with this code if you just want to open your program:
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.