13 |
ron |
1 |
; Script generated by the Inno Setup Script Wizard.
|
|
|
2 |
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
|
|
3 |
|
|
|
4 |
#define MyAppName "ExamClock"
|
|
|
5 |
#define MyAppVersion "2.1.0"
|
|
|
6 |
#define MyAppPublisher "M0RNW - Ron Wellsted"
|
|
|
7 |
#define MyAppURL "http://m0rnw.uk"
|
|
|
8 |
#define MyAppExeName "ExamClock.exe"
|
|
|
9 |
|
|
|
10 |
[Setup]
|
|
|
11 |
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
|
|
|
12 |
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
|
|
13 |
AppId={{077A59BC-1E2B-473B-BD08-33767B20A5D6}
|
|
|
14 |
AppName={#MyAppName}
|
|
|
15 |
AppVersion={#MyAppVersion}
|
|
|
16 |
;AppVerName={#MyAppName} {#MyAppVersion}
|
|
|
17 |
AppPublisher={#MyAppPublisher}
|
|
|
18 |
AppPublisherURL={#MyAppURL}
|
|
|
19 |
AppSupportURL={#MyAppURL}
|
|
|
20 |
AppUpdatesURL={#MyAppURL}
|
|
|
21 |
DefaultDirName={autopf}\{#MyAppName}
|
|
|
22 |
DisableProgramGroupPage=yes
|
|
|
23 |
LicenseFile=C:\Users\Ron.Wellsted\Projects\ExamClock\COPYRIGHT.txt
|
|
|
24 |
; Uncomment the following line to run in non administrative install mode (install for current user only.)
|
|
|
25 |
;PrivilegesRequired=lowest
|
|
|
26 |
PrivilegesRequiredOverridesAllowed=dialog
|
|
|
27 |
OutputDir=C:\Users\Ron.Wellsted\Projects\ExamClock\install
|
|
|
28 |
OutputBaseFilename=mysetup
|
|
|
29 |
SetupIconFile=C:\Users\Ron.Wellsted\Projects\ExamClock\ExamClock.ico
|
|
|
30 |
Compression=lzma
|
|
|
31 |
SolidCompression=yes
|
|
|
32 |
WizardStyle=modern
|
|
|
33 |
|
|
|
34 |
[Languages]
|
|
|
35 |
Name: "english"; MessagesFile: "compiler:Default.isl"
|
|
|
36 |
|
|
|
37 |
[Tasks]
|
|
|
38 |
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
|
|
39 |
|
|
|
40 |
[Files]
|
|
|
41 |
Source: "C:\Users\Ron.Wellsted\Projects\ExamClock\ExamClock.exe"; DestDir: "{app}"; Flags: ignoreversion
|
|
|
42 |
Source: "C:\Users\Ron.Wellsted\Projects\ExamClock\COPYING.txt"; DestDir: "{app}"; Flags: ignoreversion
|
|
|
43 |
Source: "C:\Users\Ron.Wellsted\Projects\ExamClock\COPYRIGHT.txt"; DestDir: "{app}"; Flags: ignoreversion
|
|
|
44 |
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
|
|
45 |
|
|
|
46 |
[Icons]
|
|
|
47 |
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
|
|
48 |
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
|
|
49 |
|
|
|
50 |
[Run]
|
|
|
51 |
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
|
|
52 |
|