msicreator icon indicating copy to clipboard operation
msicreator copied to clipboard

Bundling applictions...

Open addelovein opened this issue 1 year ago • 2 comments

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...

addelovein avatar Jan 28 '24 16:01 addelovein

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.

jpakkane avatar Jan 29 '24 21:01 jpakkane

<!-- 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>

addelovein avatar Jan 31 '24 19:01 addelovein