From author's site:
The installation builder is a simple SDI application with a tabbed form where you can enter all the information needed by the setup program. For example: add files, assign shortcuts and other setup specific variables.
You can also use the wizard that will guide you through the necessary steps of creating a setup program for your software product.
The application has 4 tab-pages:
> General, where you can enter application name, company name and so on.
> Files, this is where you specify all files, which need to be distributed.
> Shortcuts, specify shortcuts in the program folder (start menu).
> Output, the final step where you enter the output directory.
After you entered all the necessary information you can build the setup program. This creates a single output file that contains all setup information and files needed for installation.
The generated output file is made up from 3 parts:
1. The setup program (which unpacks the files, asks for destination folder and executes setup script)
2. All files needed for the distribution glued together.
3. The setup script, which is a Windows compatible Setup Script that does all the installation stuff for us.

