I am learning Wix and I want to generate a setup.exe file instead of a setup.msi.
Is that possible?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A setup EXE is usually referred to as a bootstrapper or chainer. WiX 3.5 will ship with an executable called
burn.exe, unfortunately this is still under heavy development.If you’re just after a basic self-extracting EXE with no additional logic you can use the included
setupbld.exewith WiX. However it’s pretty limited and only includes the most basic functionality.Alternatively, 7-zip includes basic functionality for creating a setup.exe from an existing MSI. You will need to install the SFXs for installers addon first.
If you’re after additional logic, dependency checking, etc. there are loads of alternatives. Personally I use IRMakeBootstrap, but have heard very good things about dotNetInstaller on the wix-users mailing list.