This repository has been archived by the owner on Apr 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
inno_setup_64.iss
49 lines (42 loc) · 1.73 KB
/
inno_setup_64.iss
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "vars.iss"
[Setup]
AppId={{FF21436A-C5D8-442A-9CC4-6FA8C6D0E84A}
AppName={#JAppName}
AppVersion={#JAppVersion}
AppPublisher={#JAppPublisher}
AppPublisherURL={#JAppURL}
AppSupportURL={#JAppURL}
AppUpdatesURL={#JAppURL}
DefaultDirName={commonpf}\{#JAppName}
DefaultGroupName={#JAppName}
AllowNoIcons=yes
LicenseFile=.\LICENSE.txt
OutputDir=.
OutputBaseFilename={#JAppName}_Windows_64bit_{#JAppVersion}_Installer
SetupIconFile=.\icons\favicon.ico
Compression=lzma
SolidCompression=yes
PrivilegesRequired=lowest
ArchitecturesAllowed=x64
ArchitecturesInstallIn64BitMode=x64
DisableWelcomePage=no
DisableDirPage=no
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[CustomMessages]
CurrentUser=For the current user only
AllUsers=For all users
[Tasks]
Name: desktopicon; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "Additional icons:";
Name: desktopicon\common; Description: "{cm:AllUsers}"; GroupDescription: "Additional icons:"; Flags: exclusive
Name: desktopicon\user; Description: "{cm:CurrentUser}"; GroupDescription: "Additional icons:"; Flags: exclusive unchecked
[Files]
Source: ".\dist\JNote\JNote.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: ".\dist\JNote\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
[Icons]
Name: "{group}\{#JAppName}"; Filename: "{app}\{#JAppExeName}"
Name: "{group}\{cm:UninstallProgram,{#JAppName}}"; Filename: "{uninstallexe}"
Name: "{commondesktop}\{#JAppName}"; Filename: "{app}\{#JAppExeName}"; Tasks: desktopicon/common
Name: "{userdesktop}\{#JAppName}"; Filename: "{app}\{#JAppExeName}"; Tasks: desktopicon/user
[Run]
Filename: "{app}\{#JAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(JAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent