msicreator
msicreator copied to clipboard
Bundling applictions...
Is it possible... I have come so far as to set it up in parts and the installer copys the installation msi packages to the programfolder... However i want to be able to run theese installation packages aswell....
Thanks for an awesome scritpt...
That is not supported. Someone would need to find out what the WiX syntax for that is and then add it. I'm not sure if the basic widget sets provide for that.
<!-- Setup post install operations -->
<CustomAction Id="PostInstall"
FileKey="key_to_post_install_exe"
ExeCommand=""
Execute="deferred"
Return="check"
Impersonate="no" />
<!-- Setup pre uninstall operations -->
<CustomAction Id="PreUninstall"
FileKey="key_to_pre_uninstall_exe"
ExeCommand=""
Execute="deferred"
Return="ignore"
Impersonate="no" />
<!-- Add pre and post install operations to the installer -->
<InstallExecuteSequence>
<Custom Action="PostInstall" Before="InstallFinalize">NOT Installed</Custom>
<Custom Action="PreUninstall" After="InstallInitialize">Installed</Custom>
</InstallExecuteSequence>