What does the EXE do in the Visual Studio setup project output - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T04:32:51Z http://stackoverflow.com/feeds/question/42366 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/42366/what-does-the-exe-do-in-the-visual-studio-setup-project-output 9 What does the EXE do in the Visual Studio setup project output Scott Warren 2008-09-03T19:32:00Z 2009-10-23T14:01:15Z <p>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.</p> http://stackoverflow.com/questions/42366/what-does-the-exe-do-in-the-visual-studio-setup-project-output/42377#42377 10 Answer by Domenic for What does the EXE do in the Visual Studio setup project output Domenic 2008-09-03T19:35:15Z 2008-09-03T19:35:15Z <p>It's a bootstrapper that checks to make sure that the .NET Framework is installed, before launching the MSI. It's pretty handy.</p> <p>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.</p> <p><strong>Edit</strong>: also see</p> <ul> <li>The official line: <a href="http://msdn.microsoft.com/en-us/library/k3bxs9z6(VS.80).aspx" rel="nofollow">MSDN documentation</a></li> <li>Some bootstrapper customization: <a href="http://www.coversant.net/Coversant/Blogs/tabid/88/EntryID/16/Default.aspx" rel="nofollow">some guy's blog post about what he did</a></li> </ul> http://stackoverflow.com/questions/42366/what-does-the-exe-do-in-the-visual-studio-setup-project-output/42382#42382 0 Answer by Craig for What does the EXE do in the Visual Studio setup project output Craig 2008-09-03T19:37:35Z 2008-09-03T19:37:35Z <p>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.</p> http://stackoverflow.com/questions/42366/what-does-the-exe-do-in-the-visual-studio-setup-project-output/1613668#1613668 1 Answer by CannibalSmith for What does the EXE do in the Visual Studio setup project output CannibalSmith 2009-10-23T14:01:15Z 2009-10-23T14:01:15Z <p>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.</p> <p>Other prerequisites, like .NET, are checked for by the MSI itself.</p>