File association
Hi All,
I am trying to create a file association between Adobe and a file with suffix .VIEWATTACHMENT(Oracle created file which opens with Adobe). I have captured this using Installshield 11 through folder options in Explorer but even when I do not remove the rubbish from the IRP/ISM the compiled MSI will not make the association. It is listed as a file under file types but no association is made. Am I missing something simple here? Cheers in advance
I am trying to create a file association between Adobe and a file with suffix .VIEWATTACHMENT(Oracle created file which opens with Adobe). I have captured this using Installshield 11 through folder options in Explorer but even when I do not remove the rubbish from the IRP/ISM the compiled MSI will not make the association. It is listed as a file under file types but no association is made. Am I missing something simple here? Cheers in advance
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
oreillyr
17 years ago
For anyone interested I followed the below procedure and obviously swapped my suffix and exe for the one in the sample
The example shows how to register the .dvi extensions to be opened with the yap.exe program.
Link the extension .dvi to the DVI.Document class:
Key: HKLM\SOFTWARE\Classes\.dvi
Value: <default> = "DVI.Document"
Describe the DVI.Document class:
Key: HKLM\SOFTWARE\Classes\DVI.Document
Value: <default> = "DVI Document"
Select Icon #0 from yap.exe which is in the MSI:
Key: HKLM\SOFTWARE\Classes\DVI.Document\DefaultIcon
Value: <default> = "[!yap.exe],0"
How to open the .dvi file if it is double clicked in the Explorer:
Key: HKLM\SOFTWARE\Classes\DVI.Document\shell\open\command
Value: <default> = "[!yap.exe]" "%1"
And importantly I added a reboot to the install and all good!
The example shows how to register the .dvi extensions to be opened with the yap.exe program.
Link the extension .dvi to the DVI.Document class:
Key: HKLM\SOFTWARE\Classes\.dvi
Value: <default> = "DVI.Document"
Describe the DVI.Document class:
Key: HKLM\SOFTWARE\Classes\DVI.Document
Value: <default> = "DVI Document"
Select Icon #0 from yap.exe which is in the MSI:
Key: HKLM\SOFTWARE\Classes\DVI.Document\DefaultIcon
Value: <default> = "[!yap.exe],0"
How to open the .dvi file if it is double clicked in the Explorer:
Key: HKLM\SOFTWARE\Classes\DVI.Document\shell\open\command
Value: <default> = "[!yap.exe]" "%1"
And importantly I added a reboot to the install and all good!
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.