I have an application which includes some .exe and jar files, i need to create a single installation file which will install all files and create an shortcut to my jar file..
Can anybody help, how to do this?? I have no idea about 开发者_StackOverflow社区it...
There are numerous tools you can use to create MSI files.
- Wix is bundled with recent versions of Visual Studio and is also available as an independent suite. Generates MSI files from xml descriptions (free).
- Nsis uses its own description language and has at least one example demonstrating Java support (never tried it, free).
- InstallShield (commercial).
- and surely others...
精彩评论