-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage-exe.iss
More file actions
25 lines (21 loc) · 965 Bytes
/
package-exe.iss
File metadata and controls
25 lines (21 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
; This is still a work in progress
[Setup]
AppName=jDiskMark
AppVersion=0.5.1
DefaultDirName={pf}\jdiskmark-v0.5.1
DefaultGroupName=jdiskmark
; OutputDir=userdocs:Inno Setup Examples Output
OutputBaseFilename=install-jdiskmark-v0.5.1
; SetupIconFile=your_icon.ico
Compression=lzma
SolidCompression=yes
PrivilegesRequired=admin
[Files]
Source: "path\to\your\java\app\executable.exe"; DestDir: "{app}"; Flags: ignoreversion
[Icons]
Name: "{group}\Your Java Application"; Filename: "{app}\executable.exe"
[Run]
Filename: "{app}\jDiskMark.exe"; Description: "{cm:LaunchProgram,MyApp}"; Flags: runascurrentuser nowait postinstall skipifsilent; Check: returnTrue()
Filename: "{app}\jDiskMark.exe"; Flags: runascurrentuser; Parameters: "-install -svcName ""jDiskMark"" -svcDesc ""jDiskMark"" -mainExe ""jDiskMark.exe"" "; Check: returnFalse()