I am creating a setup file for my application using Inno Setup. When right clicking a PDF file on Windows operating system i can see "Edit with Adobe Acrobat" menu item:
I want to add a similar menu item for my application to appear as "Edit with MyAppName". Is this possible using Inno Setup?
--------------------------------------------------------- Update:
Here is the registry code that i've tried to use in Inno Setup, but it's not working:
Root: "HKCR"; Subkey: ".pdf"; ValueType: string; ValueData: "PDF_File"; Flags: uninsdeletevalue
Root: "HKCR"; Subkey: "PDF_File\shell\Edit with My PDF Editor"; ValueType: string; ValueData: """{app}\My PDF Editor.exe"" ""%1"""; Flags: uninsdeletevalue
Root: "HKCR"; Subkey: "PDF_File\DefaultIcon"; ValueType: string; ValueData: "{app}\images\my_pdf_editor_icon.ico"; Flags: uninsdeletevalue