Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to make setup file containing a delphi exe and some other files

I have written a utility in delphi 5 professional which requires the some files while executing. I want to make a setup file which installs my utility program along with the other required files.

like image 639
naren Avatar asked Jul 15 '11 12:07

naren


2 Answers

You can use InnoSetup to create professional installers here is the download link ... http://www.jrsoftware.org/isinfo.php

like image 85
opc0de Avatar answered Oct 05 '22 23:10

opc0de


I'd go with InnoSetup any time if using Microsoft Windows Installer is not a requirement. If you would like to use MSI, then I'd recomment diving into Windows Installer XML, which is relatively easy to use for simple setups.

like image 44
Thorsten Dittmar Avatar answered Oct 06 '22 01:10

Thorsten Dittmar