-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstaller.iss
100 lines (84 loc) · 3.67 KB
/
installer.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#define MyAppName "Better Mouse"
#define MyAppVersion "1.7.5"
#define MyAppPublisher "Mwelwa Nkuta"
#define MyAppURL "https://github.com/mwelwankuta/better-mouse"
#define MyAppExeName "BetterMouse.exe"
#define MyServiceName "BetterMouseService"
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
AppId={{A1B2C3D4-E5F6-4747-8899-AABBCCDDEEFF}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={commonpf}\{#MyAppName}
DefaultGroupName={#MyAppName}
OutputDir=Release
OutputBaseFilename=BetterMouse_Installer_{#MyAppVersion}
SetupIconFile=app.ico
Compression=lzma
SolidCompression=yes
PrivilegesRequired=admin
UninstallDisplayIcon={app}\{#MyAppExeName}
WizardStyle=modern
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked; OnlyBelowVersion: 0,6.1
Name: "installservice"; Description: "Install as Windows Service (runs at startup)"; GroupDescription: "Service Installation"; Flags: unchecked
[Files]
Source: "Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "README.md"; DestDir: "{app}"; Flags: ignoreversion
Source: "LICENSE"; DestDir: "{app}"; Flags: ignoreversion
; Add any additional files here
[Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon
[Run]
; Run application or install service based on user choice
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent; Check: not WasServiceInstallChosen
[UninstallRun]
; Stop and remove service if installed
[Code]
var
ServicePage: TInputOptionWizardPage;
function InitializeSetup(): Boolean;
begin
Result := True;
end;
procedure InitializeWizard;
begin
// Create custom page for service installation option
ServicePage := CreateInputOptionPage(wpSelectTasks,
'Installation Type', 'Choose how you want to install Better Mouse',
'Please select whether you want to install Better Mouse as a Windows Service or as a normal application.',
True, False);
ServicePage.Add('Install as Windows Service (runs at startup)');
ServicePage.Add('Install as normal application (runs when launched)');
ServicePage.Values[1] := True; // Default to normal application
end;
function WasServiceInstallChosen(): Boolean;
begin
Result := ServicePage.Values[0];
end;
// Check for running instances before uninstall
function InitializeUninstall(): Boolean;
var
ResultCode: Integer;
begin
Result := True;
// Try to stop the service if it's running
Exec('net', 'stop {#MyServiceName}', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
// Kill any running instances of the application
Exec('taskkill', '/f /im {#MyAppExeName}', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
// Give it a moment to shut down
Sleep(1000);
end;
[Registry]
; Add registry entries for auto-start (normal application mode)
Root: HKCU; Subkey: "Software\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "{#MyAppName}"; ValueData: """{app}\{#MyAppExeName}"""; Flags: uninsdeletevalue; Tasks: not installservice