I've been given a Visual Studio solution someone else made. It has an installer project using Installshield LE. The installer builds fine but it makes an exe and I'm supposed to make an msi. I know the guy who wrote the project would generate msi files but I just don't see any options to do it. Is this doable with LE?
Asked
Active
Viewed 1.7k times
8

John Saunders
- 160,644
- 26
- 247
- 397

casolorz
- 8,486
- 19
- 93
- 200
-
What happens when you run the .exe file? – John Saunders Sep 05 '13 at 16:56
-
The exe works just fine. – casolorz Sep 05 '13 at 20:37
-
There are scenarios where an EXE is required but it does add the additional complication of cache management. – Christopher Painter Sep 05 '13 at 22:28
3 Answers
26
Go to step 6 and drill down to the Single Image release type. Set Compression on the build tab to yes and set setup launcher on the setup.exe tab to no. Build this release.

Christopher Painter
- 54,556
- 6
- 63
- 100
15
Thanks for the help, guys. These tips sorted my issue.
After so many 1990s-looking releases, its amazing that InstallShield finally went to the trouble to make their Visual Studio integration so friendly... yet hid this vital option away.
I'm adding a screenshot, to help other users.

Mike Gledhill
- 27,846
- 7
- 149
- 159
4
I've solved it by using the following
By using SingleImage as the build type
Under - Setup.exe tab (Build | Setup.exe | Signing)
Select Setup Launcher = No.
The build from InstallShield will come out as a .MSI file under
(\RELEASE_PROJECT\Express\SingleImage\DiskImages\DISK1)

kaffeemeister
- 61
- 3
-
For me, the .msi was not located under SingleImage/DiskImages/Disk1. I searched my computer and found it in a different location: Users/myusername/AppData/Local/DownloadedInstallations – Carly Jul 25 '16 at 19:09