在WiX中显示第一个UI之前,有没有办法运行自定义操作?这是因为,我需要在开始安装之前停止任务调度程序任务。
答案 0 :(得分:4)
当然,只需在InstallUISequence
调用任何对话框之前安排自定义操作。例如,如果您使用任何标准的WixUI对话框:
<InstallUISequence>
<Custom Action='StopTaskScheduler' Before='PrepareDlg' />
</InstallUISequence>
注意:此操作不会被提升。