mirror of https://github.com/wh1te909/rmmagent.git
97 lines
4.0 KiB
Plaintext
97 lines
4.0 KiB
Plaintext
#define MyAppName "Tactical RMM Agent"
|
|
#define MyAppVersion "1.2.1"
|
|
#define MyAppPublisher "Tactical Techs"
|
|
#define MyAppURL "https://github.com/wh1te909"
|
|
#define MyAppExeName "tacticalrmm.exe"
|
|
#define NSSM "nssm-x86.exe"
|
|
#define MESHEXE "meshagent-x86.exe"
|
|
#define SALTUNINSTALL "{sd}\salt\uninst.exe"
|
|
#define SALTDIR "{sd}\salt"
|
|
#define MESHDIR "{sd}\Program Files\Mesh Agent"
|
|
|
|
[Setup]
|
|
AppId={{0D34D278-5FAF-4159-A4A0-4E2D2C08139D}
|
|
AppName={#MyAppName}
|
|
AppVersion={#MyAppVersion}
|
|
AppVerName={#MyAppName}
|
|
AppPublisher={#MyAppPublisher}
|
|
AppPublisherURL={#MyAppURL}
|
|
AppSupportURL={#MyAppURL}
|
|
AppUpdatesURL={#MyAppURL}
|
|
DefaultDirName="{sd}\Program Files\TacticalAgent"
|
|
DisableDirPage=yes
|
|
SetupLogging=yes
|
|
DisableProgramGroupPage=yes
|
|
OutputBaseFilename=winagent-v{#MyAppVersion}-x86
|
|
SetupIconFile=C:\Users\Public\Documents\rmmagent\build\onit.ico
|
|
WizardSmallImageFile=C:\Users\Public\Documents\rmmagent\build\onit.bmp
|
|
UninstallDisplayIcon={app}\{#MyAppExeName}
|
|
Compression=lzma
|
|
SolidCompression=yes
|
|
WizardStyle=modern
|
|
RestartApplications=no
|
|
|
|
[Languages]
|
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
|
|
|
[Tasks]
|
|
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
|
|
|
[Files]
|
|
Source: "C:\Users\Public\Documents\rmmagent\tacticalrmm.exe"; DestDir: "{app}"; Flags: ignoreversion;
|
|
Source: "C:\Users\Public\Documents\rmmagent\build\nssm-x86.exe"; DestDir: "{app}"; Flags: ignoreversion;
|
|
Source: "C:\Users\Public\Documents\rmmagent\build\saltcustom"; DestDir: "{app}"; Flags: ignoreversion;
|
|
|
|
[Icons]
|
|
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
|
|
|
[Run]
|
|
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent runascurrentuser
|
|
|
|
[UninstallRun]
|
|
Filename: "{app}\{#NSSM}"; Parameters: "stop tacticalagent"; RunOnceId: "stoptacagent";
|
|
Filename: "{app}\{#NSSM}"; Parameters: "remove tacticalagent confirm"; RunOnceId: "removetacagent";
|
|
Filename: "{app}\{#NSSM}"; Parameters: "stop checkrunner"; RunOnceId: "stopcheckrun";
|
|
Filename: "{app}\{#NSSM}"; Parameters: "remove checkrunner confirm"; RunOnceId: "removecheckrun";
|
|
Filename: "{app}\{#NSSM}"; Parameters: "stop tacticalrpc"; RunOnceId: "stoptacrpc";
|
|
Filename: "{app}\{#NSSM}"; Parameters: "remove tacticalrpc confirm"; RunOnceId: "removetacrpc";
|
|
Filename: "{app}\{#MyAppExeName}"; Parameters: "-m cleanup"; RunOnceId: "cleanuprm";
|
|
Filename: "{cmd}"; Parameters: "/c taskkill /F /IM tacticalrmm.exe"; RunOnceId: "killtacrmm";
|
|
Filename: "{#SALTUNINSTALL}"; Parameters: "/S"; RunOnceId: "saltrm";
|
|
Filename: "{app}\{#MESHEXE}"; Parameters: "-fulluninstall"; RunOnceId: "meshrm";
|
|
|
|
[UninstallDelete]
|
|
Type: filesandordirs; Name: "{app}";
|
|
Type: filesandordirs; Name: "{#SALTDIR}";
|
|
Type: filesandordirs; Name: "{#MESHDIR}";
|
|
|
|
[Code]
|
|
function InitializeSetup(): boolean;
|
|
var
|
|
ResultCode: Integer;
|
|
begin
|
|
Exec('cmd.exe', '/c net stop tacticalagent', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
|
|
Log('Stop tacticalagent: ' + IntToStr(ResultCode));
|
|
Exec('cmd.exe', '/c net stop checkrunner', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
|
|
Log('Stop checkrunner: ' + IntToStr(ResultCode));
|
|
Exec('cmd.exe', '/c net stop tacticalrpc', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
|
|
Log('Stop tacticalrpc: ' + IntToStr(ResultCode));
|
|
Exec('cmd.exe', '/c taskkill /F /IM tacticalrmm.exe', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
|
|
Log('taskkill: ' + IntToStr(ResultCode));
|
|
|
|
Result := True;
|
|
end;
|
|
|
|
procedure DeinitializeSetup();
|
|
var
|
|
ResultCode: Integer;
|
|
begin
|
|
Exec('cmd.exe', '/c net start tacticalagent && ping 127.0.0.1 -n 3', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
|
|
Log('Start tacticalagent: ' + IntToStr(ResultCode));
|
|
Exec('cmd.exe', '/c net start checkrunner', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
|
|
Log('Start checkrunner: ' + IntToStr(ResultCode));
|
|
Exec('cmd.exe', '/c net start tacticalrpc', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
|
|
Log('Start tacticalrpc: ' + IntToStr(ResultCode));
|
|
end;
|
|
|