I’ve written a fair amount of code in my IT career and released a good number of Windows programs also. A good tool to create Windows installer packages was always key. Each program would have a different set of needs, such as scripts, DLLs, security settings, etc, so one tool to create any type of complex Installer package was necessary.
If you have the money or you need tons of support, you can always go with InstallShield, the solid choice for many companies using Windows. We always used InstallShield in our early days as it came packaged with Visual Studio and Visual Foxpro.
However, it is not the only good MSI package creator software out there. If you love open source software, you may want to check out the Nullsoft Scriptable Install System (NSIS).
NSIS is a professional system that you can use to create everything from very simple to very complex Windows installers. It’s small, yet has a large feature set, which makes it suitable for Internet distribution.
As you can tell by the name, NSIS is script-based, which allows you to create logic as complicated as you want to handle any situation. Luckily, for beginners, it also includes a bunch of plug-ins and pre-defined scripts to get you started.
Some big name companies use this program to create their installers, such as WinAmp, eMule, and 3DNA.
As you can see from above, the screens are very professional looking and can be customized to include logos, images, or other extra features and options. Here is a short list of some of my favorite features of this MSI package creator:
- Ability to create Windows installers that can install, uninstall, set system settings, extract files, and more.
- NSIS has an overheard of only 34KB! It is by far the smallest Windows installer compared to InstallShield and Wise.
- Compatible with all major version of Windows including 95, 98, ME, 2000, NT, XP, Vista, and Server 2003.
- Three compression methods (ZLib, BZip2, LZMA) to ensure the greatest compression for your installer packages. Also, no need to create self-extracting archive files since the installer package itself is compressed.
- Script based installer is better than other programs that just generate a list of files and registry keys. Using the script language, you can perform many different installation tasks like upgrades, version checks, system reboots, modification of environment variables, access to Windows API and more.
- Supports up to 40 languages in one installer package that are already included with the software. Right-to-Left languages are fully supported also.
- Create custom dialogs and interfaces to include user input, configuration options, and even a custom wizard interface.
- Extend the capabilities of NSIS with plug-ins that can communicate with the installer. You can either write your own in C, C++ or you can use some of the pre-created ones.
- Support for web installation and file patching across the Internet.
The programs supports a tons of other features including installer self-verification using checksum, list and tree for component selection, silent mode for automated installations, full code editor for writing scripts, etc.
The list just goes on and on! Overall, it’s a great tool to create MSI packages for small shops that don’t want to spend on more expensive programs. For simple installers, it’s definitely the way to go, since it can handle most programs without having to write code, etc. It’s also great for advanced program installations, but you will have be more technically savvy. Enjoy!







NSIS doesn’t make .MSI files. NSIS makes .EXE installers, which are different and can’t be installed using Windows Installer like .MSIs.