Skip to content

Commit 95a7b8f

Browse files
committed
Inno setup script added
1 parent 1930807 commit 95a7b8f

1 file changed

Lines changed: 53 additions & 0 deletions

File tree

InnoSetup/NETworkManager.iss

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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 "NETworkManager"
5+
#define MyAppVersion "2019.12.0"
6+
#define MyAppPublisher "BornToBeRoot"
7+
#define MyAppURL "https://github.com/BornToBeRoot/NETworkManager/"
8+
#define MyAppExeName "NETworkManager.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={{8028080F-B785-4A74-A243-3D63467880A6}
14+
AppName={#MyAppName}
15+
AppVersion={#MyAppVersion}
16+
;AppVerName={#MyAppName} {#MyAppVersion}
17+
AppPublisher={#MyAppPublisher}
18+
AppPublisherURL={#MyAppURL}
19+
AppSupportURL={#MyAppURL}
20+
AppUpdatesURL={#MyAppURL}
21+
UninstallDisplayName={#MyAppName}
22+
UninstallDisplayIcon={app}\{#MyAppExeName}
23+
DefaultDirName={autopf}\{#MyAppName}
24+
DisableProgramGroupPage=yes
25+
LicenseFile=X:\NETworkManager\Builds\2019.12.0\Licenses\NETworkManager.txt
26+
; Uncomment the following line to run in non administrative install mode (install for current user only.)
27+
;PrivilegesRequired=lowest
28+
OutputDir=X:\NETworkManager\Builds
29+
OutputBaseFilename=NETworkManager_{#MyAppVersion}_Setup
30+
Compression=lzma
31+
SolidCompression=yes
32+
WizardStyle=modern
33+
34+
[Languages]
35+
Name: "english"; MessagesFile: "compiler:Default.isl"
36+
Name: "german"; MessagesFile: "compiler:Languages\German.isl"
37+
Name: "russian"; MessagesFile: "compiler:Languages\Russian.isl"
38+
39+
[Tasks]
40+
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
41+
42+
[Files]
43+
Source: "X:\NETworkManager\Builds\2019.12.0\NETworkManager.exe"; DestDir: "{app}"; Flags: ignoreversion
44+
Source: "X:\NETworkManager\Builds\2019.12.0\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
45+
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
46+
47+
[Icons]
48+
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
49+
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
50+
51+
[Run]
52+
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
53+

0 commit comments

Comments
 (0)