I am trying to create a single .exe file installer. I managed to get all the dependencies in to a .exe file (by setting extract from Setup.exe property). How do i get the .msi also inside the setup.exe file?
This is what it looks like now
I am trying to create a single .exe file installer. I managed to get all the dependencies in to a .exe file (by setting extract from Setup.exe property). How do i get the .msi also inside the setup.exe file?
This is what it looks like now
I had this trouble too. The way it does is very unintuitive, IMO.
On Visual Studio Standard toolbar, choose "Solution Configuration" dropdown. Probably it is selected as "Debug". Change it to "Single Image"
Right click on your setup project and Build.
It should create a single setup.exe.
Go to the solution configuration properties and configure as shown in the image:
Creating a stand-alone setup.exe with InstallShield LE is just a little tricky. You have to remember several things.
Go to "Build" -> "Configuration Manager" -> change the configuration to "SingleImage." You may have access to the configuration directly on the tool bar at the top. Your options will be "CDROM", "DVD-5", an "SingleImage." You can change it from the configuration manager or using the tool bar.
Next go to "Prepare for release" in the solution explorer (on the far right) and double-click on "Releases." On the left-hand side you will see your "Builds" tree. Work your way down the tree to "SingleImage." Click on it.
In the middle witll be three tabs: "Build", "Setup.exe", "Signing." Click on "Setup.exe." Set Setup Launcher to Yes (it will probably already be set to this). Down at the end of the options is a section called "InstallShield Prerequisites Location" - set this to "Extract From Setup.exe" otherwise any prerequisites (there are usually lots) will not be embedded into the setup.exe.
You're done.
It's possible to create a single setup.exe file with IExpress.exe which is mentioned here
I don't have InstallShield LE installed on the machine in front of me but my memory is that it has different solution configurations defined. One of them is called SingleImage. Just build that release.