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.
最初の UI が WiX に表示される前にカスタム アクションを実行する方法はありますか? これは、インストールを開始する前にタスク スケジューラ タスクを停止する必要があるためです。
もちろん、 によってダイアログが呼び出される前に、カスタム アクションをスケジュールするだけInstallUISequenceです。たとえば、標準の WixUI ダイアログを使用している場合:
InstallUISequence
<InstallUISequence> <Custom Action='StopTaskScheduler' Before='PrepareDlg' /> </InstallUISequence>
注: このアクションは管理者特権で実行されません。