使用Inno Setup中的“taskkill / f / im”在(重新)安装之前杀死进程

时间:2015-11-18 09:38:57

标签: inno-setup taskkill

我安装了一个服务/守护程序,需要在卸载并重新安装之前将其终止。

我已经找到了how to do it for uninstall

[UninstallRun]
Filename: "taskkill"; Parameters: "/im ""My Service.exe"" /f"; Flags: runhidden

然而,[Run]部分在安装后运行,因此我无法使用它。在安装之前使用taskkill终止进程的最佳方法是什么?

请注意,我特意要杀死这个过程。 A more complex solution using IPC在我的案例中没有任何好处,我只想在安装特定文件之前执行taskkill

2 个答案:

答案 0 :(得分:16)

我在代码部分找到了使用BeforeInstall关键字和简单Pascal函数的方法。我添加了一个字符串参数,因此它可以重用于多个进程。

[Files]
Source: "My Service 1.exe"; DestDir: "{app}"; Flags: ignoreversion; BeforeInstall: TaskKill('My Service 1.exe')
Source: "My Service 2.exe"; DestDir: "{app}"; Flags: ignoreversion; BeforeInstall: TaskKill('My Service 2.exe')

[Code]
procedure TaskKill(FileName: String);
var
  ResultCode: Integer;
begin
    Exec(ExpandConstant('taskkill.exe'), '/f /im ' + '"' + FileName + '"', '', SW_HIDE,
     ewWaitUntilTerminated, ResultCode);
end;

答案 1 :(得分:7)

除非安装程序在Windows XP计算机上运行,​​或者您已将CloseApplications directive设置为no(默认值为yes),否则安装程序应自动关闭应用程序:

enter image description here

此功能自Windows Vista及更新版本的Inno Setup 5.5起可用。