-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.iss
More file actions
31 lines (26 loc) · 1.02 KB
/
Copy pathsetup.iss
File metadata and controls
31 lines (26 loc) · 1.02 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
; Inno Setup script for Desktop Duck
; Download Inno Setup from https://jrsoftware.org/isinfo.php
; Open this file in Inno Setup Compiler and click Compile.
[Setup]
AppName=Desktop Duck
AppVersion=1.0
DefaultDirName={autopf}\DesktopDuck
DefaultGroupName=Desktop Duck
OutputDir=.\installer
OutputBaseFilename=DesktopDuck-Setup
Compression=lzma2
SolidCompression=yes
WizardStyle=modern
PrivilegesRequired=lowest
[Files]
Source: "dist\DesktopDuck.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "downPic\*"; DestDir: "{app}\downPic"; Flags: ignoreversion recursesubdirs
Source: "Pic\*"; DestDir: "{app}\Pic"; Flags: ignoreversion recursesubdirs
[Dirs]
Name: "{app}\Audio"
[Icons]
Name: "{autoprograms}\Desktop Duck"; Filename: "{app}\DesktopDuck.exe"
Name: "{autodesktop}\Desktop Duck"; Filename: "{app}\DesktopDuck.exe"
Name: "{userstartup}\Desktop Duck"; Filename: "{app}\DesktopDuck.exe"; Parameters: "--autostart"
[Run]
Filename: "{app}\DesktopDuck.exe"; Description: "启动 Desktop Duck"; Flags: nowait postinstall skipifsilent