jm2008
Posts: 62
Joined: Tue Jul 08, 2008 10:24 am

Installation Condition for Merge Module

Hello,

One of the projects we have requires 2 separated MergeModule (for GAC) to be installed on the target machine, one for 32-Bit and the other for 64-bit, How can I add condition for the merge module to be installed only if the machine running 32-bit or 64-bit?

Thanks,
Cosmin
Posts: 5797
Joined: Tue Jul 10, 2007 6:39 pm
Contact: Website

Re: Installation Condition for Merge Module

Hi,

The installation of a merge module cannot be conditioned directly. However, you can condition the feature which contains the merge module. For this you can use a Conditional install level in the Feature Properties page.

The conditional install level for the 32-bit feature can look like this:

Code: Select all

VersionNT64             0
NOT VersionNT64         1
The conditional install level for the 64-bit feature can look like this:

Code: Select all

VersionNT64             1
NOT VersionNT64         0
Regards,
Cosmin
Cosmin Pirvu - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube
jm2008
Posts: 62
Joined: Tue Jul 08, 2008 10:24 am

Re: Installation Condition for Merge Module

Thank you very much, it works fine now..

John,

Return to “Common Problems”