5

从使用 Wix 创建的 MSI 运行卸载时,我需要在尝试删除任何文件之前强制终止在后台运行的进程。主应用程序包含一个托盘图标,它反映了 bg 进程监视本地 Windows 服务的状态(在 C# 上制作,尽管这可能不那么相关)。

我首先尝试了以下方法:

<File Id='FooEXE' Name='Foo.exe' Source='..\Source\bin\Release\Foo.exe' Vital='yes' />     
...
<InstallExecuteSequence>
  <Custom Action="CloseTray" Before="InstallValidate" />
</InstallExecuteSequence>
...
<CustomAction Id="CloseTray" ExeCommand="-exit" FileKey="FooEXE" Execute="immediate" Return="asyncWait" />

确认应用程序关闭对话框后托盘图标立即关闭,但卸载完成后 Foo.Exe 任务仍出现在 taskmgr 上。此外,还给出了以下错误消息:

错误消息 #1

这就是为什么,然后我尝试了这个:

<InstallExecuteSequence>
  <Custom Action="Foo.TaskKill" Before="InstallValidate" />
</InstallExecuteSequence>
...
<CustomAction Id="Foo.TaskKill" Impersonate="yes" Return="asyncWait" Directory="WinDir" ExeCommand="\System32\taskkill.exe /F /IM Foo.exe /T" />

得到相同结果后,尝试:

<Property Id="QtExecCmdLine" Value='"[WinDir]\System32\taskkill.exe" /F /IM Foo.exe'/>
...
<InstallExecuteSequence>
  <Custom Action="MyProcess.TaskKill" Before="InstallValidate" />
</InstallExecuteSequence>
...
<CustomAction Id="MyProcess.TaskKill" BinaryKey="WixCA" DllEntry="CAQuietExec" Execute="immediate" Return="ignore"/>

我从这里获取的示例:如何从 WiX 中终止进程

最近,当所有其他方法都失败时,我也尝试了这个但没有成功:

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
...
<InstallExecuteSequence>
 <Custom Action="WixCloseApplications" Before="InstallValidate" />
</InstallExecuteSequence>
...
<util:CloseApplication Id="CloseFoo" CloseMessage="yes" Description="Foo is still running!" ElevatedCloseMessage="yes" RebootPrompt="yes" Target="Foo.exe" />

这给了我一个不同的错误:

错误#2,我在这里做错了什么?

我正在考虑建造一座雕像来纪念这个拒绝死亡的过程!!!...无论是那个还是认为应用程序端存在问题,我应该在其中添加类似 Application.Exit(); 或 Environment.Exit(0); 在 Program.cs 中的某行。

我可以在 Wix 或我的应用程序上做任何其他事情来尝试在卸载时成功关闭它吗?谢谢!

4

1 回答 1

3

就我个人而言,我认为你最好的选择是内置CloseApplication方法,而不是你以前的选择。

您为此遇到的错误(错误代码 2762)是因为您尝试按立即顺序安排操作,但具有ElevatedCloseMessage="yes"将其触发为延迟操作的集合。删除此属性或按延迟顺序安排它。

于 2013-05-14T11:19:54.830 回答