Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 WiX 中显示第一个 UI 之前,有什么方法可以运行自定义操作?这是因为,我需要在开始安装之前停止任务计划程序任务。
当然,只需在InstallUISequence. 例如,如果您使用任何标准的 WixUI 对话框:
InstallUISequence
<InstallUISequence> <Custom Action='StopTaskScheduler' Before='PrepareDlg' /> </InstallUISequence>
注意:此操作不会被提升执行。