Specify the INSTALLLOCATION of packages in WiX inside the Burn managed bootstrapper

大兔子大兔子 提交于 2019-12-17 18:42:07

问题


I have a WiX 3.6 bundle (using Burn) and managed bootstrapper that install several MSI packages. Some of the packages install to a common location (C:\program files\MyApp).

I want to let the user choose the install location inside the managed bootstrapper application (C# WPF, especially because the application is large to install; about 1 GB). How can I specify the INSTALLLOCATION for each MSI packages inside my bundle?


回答1:


Use an MsiProperty child for each MsiPackage to specify INSTALLLOCATION=[BurnVariable]. Then use Engine.StringVariables to set BurnVariable.

For example, in your bundle you set:

<Bundle ...>
    <Variable Name='BurnVariable' Value='bar' />
    ...
    <Chain>
        <MsiPackage Source='path\to\your.msi'>
            <MsiProperty Name="INSTALLLOCATION" Value="[BurnVariable]" />
        </MsiPackage>
    </Chain>
</Bundle>    

See also the FireGiant explanation on this topic.

Then in the managed bootstrapper you can do something similar to this:

Engine.StringVariables["BurnVariable"] = "C:\program files\MyApp";


来源:https://stackoverflow.com/questions/7588259/specify-the-installlocation-of-packages-in-wix-inside-the-burn-managed-bootstrap

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!