This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: merge module holder object for 64bit merge modules
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 28, 2010
01:21 PM
merge module holder object for 64bit merge modules
Hi:
I have two InstallScript projects, one is called 32bitMerge and the other one is called 64bitMerge.
In the 32bitMerge project, there is only one feature which has one component: a merge module holder object, which includes a few 32 bit merge modules from an 3rd party vendor.
In the 64bitMerge project, there is again only one feature which has one component:a merge module holder object, which includes the 64bit version of the same merge modules as the ones in project 32bitMerge.
The setup.exe generated from the 32bitMerge project works fine in a 32 bit OS.
However, the setup.exe generated from the 64bitMerge project does not work in the 64bit OS.
I know the 64bit merge modules are good since if I add them to a Basic MSI project, they work properly.
Could anyone please tell me why I cannot add 64bit merge modules to the InstallScript project?
Thank you very much,
I have two InstallScript projects, one is called 32bitMerge and the other one is called 64bitMerge.
In the 32bitMerge project, there is only one feature which has one component: a merge module holder object, which includes a few 32 bit merge modules from an 3rd party vendor.
In the 64bitMerge project, there is again only one feature which has one component:a merge module holder object, which includes the 64bit version of the same merge modules as the ones in project 32bitMerge.
The setup.exe generated from the 32bitMerge project works fine in a 32 bit OS.
However, the setup.exe generated from the 64bitMerge project does not work in the 64bit OS.
I know the 64bit merge modules are good since if I add them to a Basic MSI project, they work properly.
Could anyone please tell me why I cannot add 64bit merge modules to the InstallScript project?
Thank you very much,
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 28, 2010
05:37 PM
The merge module holder object only supports 32-bit installs. I would suggest creating a 64-bit msi that consumes the merge module, and installing/uninstalling that with calls to LaunchApplication.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 28, 2010
07:11 PM
Thank for your help!!!