I have multiple versions of an application where the executable has always the same name, just the file's path is different. When installing I would like to create a entry in the Open With... context menu and add the app's version to the label.
While this question here:
Name program in the Open With... context menu
is essentially the same, the answer only eludes to the situation where the executable has a different name for each version and by writing a string value called FriendlyAppName
into
[HKEY_CLASSES_ROOT\Applications\**YOUR PROGRAM HERE***.exe\shell\open]
you can set the label. Is there a procedure for my case where the executable has always the same name?
Thanks Markus