How can I create an MSI setup?

后端 未结 8 1512
失恋的感觉
失恋的感觉 2020-11-30 21:06

I\'ve created setups for all my Delphi tools with Inno Setup for years. Now some users rather want an MSI installation package, so they can deploy the setups from a central

相关标签:
8条回答
  • 2020-11-30 21:37

    You can use Wix (which is free) to create an MSI installation package.

    WiX Tutorial - Creating an Installer MSI with Wix

    0 讨论(0)
  • 2020-11-30 21:38

    You can use Visual Studio - that's paid.

    You can use https://www.advancedinstaller.com/ - that has a free edition.

    You can use http://nsis.sourceforge.net/Main_Page - for example Winamp uses this installer - and is very configurable and is Open Source.

    0 讨论(0)
  • 2020-11-30 21:42

    Google "Freeware MSI installer".

    e.g. https://www.advancedinstaller.com/

    Several options here:

    http://rbytes.net/software/development_c/install-and-setup_s/

    Though being Windows, most are "shareware" rather than truly free and open source.

    0 讨论(0)
  • 2020-11-30 21:48

    In my opinion you should use Wix#, which nicely hides most of the complexity of building an MSI installation pacakge.

    It allows you to perform all possible kinds of customization using a more easier language compared to WiX.

    0 讨论(0)
  • 2020-11-30 21:49

    Look for Windows Installer XML (WiX)

    0 讨论(0)
  • 2020-11-30 21:50

    You can use "Visual studio installer project" and its free...

    This is very easy to create installer and has GUI.(Most of the freeware MSI creation tool does not have a GUI part)

    You will find many tutorials to create an installer easily on the internet

    To install. just search Visual Studio Installer Project in your Visual Studio

    Visual Studio-> Tools-> Extensions&updates ->search Visual Studio Installer Project. Download it and enjoy...

    0 讨论(0)
提交回复
热议问题