Reputation: 701
I have developed a windows application (one type of CRM System) but now I want to create its setup file so it can be easily installed on client's machine. I have searched online and found out the way using InstallShield. But it is giving the free trial and then it is offering the paid version. Is there any other way to create Setup file without using InstallShield?
Upvotes: 1
Views: 2046
Reputation: 155
You can use visual studio 2015 and install installer projects extension.
Upvotes: 1
Reputation: 3292
You should also take a look at https://wixtoolset.org. A lot of new, helpful elements (grammar is XML) were added to simplify development. So while it's not drag-and-drop design, it's fairly easy to use and 3.x builds MSIs that are still the mainstay on Windows. 4.x pre-releases can also build other formats such as AppX (though, that is only supported on Windows 10 to install).
Upvotes: 0
Reputation: 453
You can use the extension Visual Studio Installer Projects Extension: VSI_Bundle. See the The Visual Studio Blog
It worked good for me.
See my answer in this post: https://stackoverflow.com/a/28029063/200824
Upvotes: 1