简体   繁体   中英

How to add two msi packges in suit installer for windows in installshield

我想在一个套装安装程序软件包中添加两个msi软件包。如果用户选择了完整的安装选项,则在安装软件包时会安装一个msi软件包。如果用户选择custom,则会列出两个软件包,用户应该可以选择和根据该安装进行。

Adding the MSI is simple, go to the Designer view->Organization->packages and R-Click on Packages and add whatever type of installer your adding.

For Complete/Custom - use a "Property Comparison" condition in the "Eligibility Condition" for each package, ie: "Property Comparison" stringCompare PACKAGE1 = true

On the InstallType page, in the "Complete" and "Custom" buttons, click on the Events-Click option and click the green + sign to the right and select the setProperty action and set the properties to true or false for both buttons: "Complete" and "Custom"

So for the Complete button, you would setProperty PACKAGE1=true and another setProperty PACKAGE2=false.

Custom you would setProperty PACKAGE1=true and another setProperty PACKAGE2=true.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM