-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSetup.iss
More file actions
56 lines (41 loc) · 1.78 KB
/
Copy pathSetup.iss
File metadata and controls
56 lines (41 loc) · 1.78 KB
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
50
51
52
53
54
55
56
; Inno Setup Script for WORKFLOW Application
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
AppId={{C1D4A6E8-3C7F-4B0A-B879-C727B42D9842}
AppName=WORKFLOW
AppVersion=2.0.0
AppPublisher=Protik Das
DefaultDirName={autopf}\WORKFLOW
DefaultGroupName=WORKFLOW
OutputDir=D:\update\Output
OutputBaseFilename=WORKFLOW_Setup_v2.0.0
SetupIconFile=D:\update\installation.ico
; Allows 64-bit mode on x64 systems, otherwise stays in 32-bit mode
ArchitecturesInstallIn64BitMode=x64
; Allows the installer to run on both 32-bit and 64-bit Windows
ArchitecturesAllowed=x86 x64
WizardImageFile=D:\update\logob.bmp
WizardSmallImageFile=D:\update\logo .bmp
Compression=lzma
SolidCompression=yes
WizardStyle=modern
; This shows your Terms and Conditions and requires acceptance.
LicenseFile=D:\update\TERMS.md
; ADDED: This line ensures the directory selection page is shown to the user.
DisableDirPage=no
; ADDED: This line shows the selected path on the final confirmation page.
AlwaysShowDirOnReadyPage=yes
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
; This packages all files from your PyInstaller output folder.
Source: "D:\update\dist\WorkflowApp\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
[Icons]
; This version relies on the icon embedded in WorkflowApp.exe
Name: "{group}\WORKFLOW"; Filename: "{app}\WorkflowApp.exe"
Name: "{group}\{cm:UninstallProgram,WORKFLOW}"; Filename: "{uninstallexe}"
Name: "{autodesktop}\WORKFLOW"; Filename: "{app}\WorkflowApp.exe"; Tasks: desktopicon
[Run]
Filename: "{app}\WorkflowApp.exe"; Description: "{cm:LaunchProgram,WORKFLOW}"; Flags: nowait postinstall skipifsilent