vote up 9 vote down star
2

We are working on a winforms app in Visual Studio 2005 and the setup project we created output both an MSI and an EXE. We aren't sure what the EXE file is used for because we are able to install without the EXE.

flag

3 Answers

vote up 10 vote down check

It's a bootstrapper that checks to make sure that the .NET Framework is installed, before launching the MSI. It's pretty handy.

I suggest using something like SFX Compiler to package the two together into one self-extracting .exe and then launch the extracted setup.exe. This way you retain the benefits of the bootstrapper, but your users only download a single thing.

Edit: also see

link|flag
link is broken, any replacement available (simple google didnt yield anythign, but then I didnt know what to look for :P) – Ruben Bartelink Jan 21 at 8:48
Anyone know of an SFX compiler that'll work without a GUI? – Ruben Bartelink Jan 21 at 8:59
can you also point out that the setup.exe automates the download and install of the prereqs – Ruben Bartelink Jan 21 at 9:01
vote up 0 vote down

I think the EXE is just a wrapper/bootstrapper for the MSI in case you don't have Window Installer. If you have the requisite Windows Installer version installed then the MSI should work fine on its own.

link|flag
it also does auto download of WI and other packages like .NET – Ruben Bartelink Jan 21 at 9:00
vote up 1 vote down

The EXE checks if Windows Installer 3.0 is present and downloads and installs it if it's not. It's needed only for Windows 2000 or older. Windows XP and newer all have Windows Installer 3.0 out of the box.

Other prerequisites, like .NET, are checked for by the MSI itself.

link|flag

Your Answer

Get an OpenID
or

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