jongwee Moderator
Reputation: 0
Joined: 28 Jun 2006 Posts: 1388 Location: Singapore
|
Posted: Sun Oct 14, 2007 2:28 am Post subject: Pascal Installer Coding |
|
|
I'm quite sure this would belong to this section as it involves pascal coding. This "guide" basically revolves around how we are going to make our own installer using Inno Setup(Or any other installers).
Screenshots:
Explanation of the details in the second screenshot:
[setup]
AppName: Name of Application
AppVerName: Version name of Application. For example, GameGuard Rev 1555
AppPublisher: Publisher of the Application
AppPublisherURL, AppSupportURL, AppUpdatesURL: Website of the publisher, support, and updates
DefaultDirName: Default directory name
DefaultGroupName: as said
LicenseFile: This is basically a kind of "readme" thing in a installer
OutputDir: The directory which the installer would be in after compiling
OutputBaseFilename: The name of the installer
SetupIconFile: Icon for the installer
Password: An encryption which you are free to put it any type of passwords you want.
[Languages]
This is basically where you can put whatever language you want your installer to be in. As English language is the default language in the installer, the directory would be different from most of the languages. If you want other languages like Portugese, basque, change your directory to "compiler:Languages\Basque.isl", or "compiler:Languages\Portugese.isl". These language files can be found in your "C:\Program Files\Inno Setup 5\Languages" directory.
[Files]
This is where you are required to state where your programs, which you are going to be in the installer. To briefly summarise:
"Source:" is where you are going to put in the directory of your program is, for example: Source: | Code: | "C:\Documents and Settings\Administrator\Desktop\Hook\KIYS.exe";
|
DestDir: Destination directory
[run]
To put it simply, these codes in this section runs/launches the application.
Thanks to: http://www.jrsoftware.org, DB.
I'm sorry this guide is a bit short, I'd do my best to amend this guide ASAP. Thank you for reading.
_________________
|
|