[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.setup

Conditonally include merge module

sajithpt

6/7/2006 9:07:00 AM

Hi All,

How to specify a condition to whether include or exclude a merge module in
the setup program?
I have different .msm files for help integration for VS2002, 2003 and 2005.
And want to run these .msm files conditonally , depending on which
version/versions for VS are present.
Any pointers on how to do this will be of great help.

Thanks,
Sajith
2 Answers

scott brinkmeyer

6/8/2006 9:48:00 PM

0

merge modules are actually mini-msi databases that get merged in to the
resultant msi. what you would want to do is assign those merge modules to 3
seperate sub features of a parent feature called help
so the feature tree would look like this
help
|-msm_vs2002
|
|-msm_vs2003
|
|-msm_vs2005

then your features would have a condition on them of say a property set by
and AppSearch

then when the user installed they would only get the version of vs

cheers

sajithpt

6/12/2006 10:57:00 AM

0

Hi Scott,

Thanks for your help.
Could you please elaborate on this.
How to add separate sub features in the setup program?

Any pointers or links on this would be of great help.

Thanks,
Sajith

"scott brinkmeyer" wrote:

> merge modules are actually mini-msi databases that get merged in to the
> resultant msi. what you would want to do is assign those merge modules to 3
> seperate sub features of a parent feature called help
> so the feature tree would look like this
> help
> |-msm_vs2002
> |
> |-msm_vs2003
> |
> |-msm_vs2005
>
> then your features would have a condition on them of say a property set by
> and AppSearch
>
> then when the user installed they would only get the version of vs
>
> cheers
>