0

I have a .config and .msi file and I want to convert it to the single EXE setup file. since I do not have a source code of this file. how can I do this?

1 Answer 1

0

Assuming the .config is part of the MSI, I'd first use ORCA to create a transform that disables it from the MSI. Then I'd use Windows Installer XML (WiX) to create an MSI that contains only the .config. Finally I'd use WiX to create a Burn bootstrapper the installs the MSI (applying the transform) and then installs the config MSI. It would all show up in Programs and Features as a single entry controlled by the bootstrapper.

2
  • I looking to create exe setup file Commented Mar 2, 2017 at 15:44
  • And that's what you would haven A single EXE that extracts and installs 2 MSI under the covers. Commented Mar 2, 2017 at 18:08

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.