我正在使用Wix 3.5代码:
<util:CloseApplication Id="CloseMyApp" CloseMessage="yes" Target="Foo.exe" RebootPrompt="no"/>
<InstallExecuteSequence>
<Custom Action='WixCloseApplications' Before='InstallValidate' />
</InstallExecuteSequence>
在卸载实际发生之前,它确实强制并静默地终止应用程序。 但是,我想知道是否可以在消息框发生此类终止之前提示用户,并在允许的情况下继续终止?
由于