Log in

View Full Version : EULA in Inno Setup


Midnight
01-24-2004, 12:53 PM
Does anyone know how to display an EULA (and require a user to accept it) in Inno Setup - I've searched high and low but can't seem to find any info on it.

Thanks in advance!
Patrick

gilzu
01-24-2004, 12:57 PM
LicenseFile=license.txt

RedClaw
01-24-2004, 01:00 PM
Run the wizard and towards the end it will ask you for the location of a licence. Click "browse" and select your licence file. Then when the installer is created, it will display this licence along with the "do you agree?" question thingy.

Fenix Down
01-24-2004, 01:02 PM
The easiest way to do this (and anything else for Inno Setup) is to just use ISTool (http://www.istool.org/) . It lets you configure everything with a GUI so you don't have to spend a lot of time writing scripts. It also has 7zip compression support, the best you'll get in an installer these days.

Midnight
01-24-2004, 02:23 PM
Great... thanks for all the quick responses!