casolorz
casolorz

Reputation: 9544

How to make an MSI with Visual Studio 2012 and Installshield LE

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?

Upvotes: 8

Views: 17342

Answers (3)

Mike Gledhill
Mike Gledhill

Reputation: 29161

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.

enter image description here

Upvotes: 15

kaffeemeister
kaffeemeister

Reputation: 61

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)

Upvotes: 4

Christopher Painter
Christopher Painter

Reputation: 55581

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.

Upvotes: 26

Related Questions