英文:
Wix Burn Bundle: Show ExePackages Output
问题
你好大家,我有一个带有一些命令的脚本,可以调整我在Burn Bundle的链中使用的系统上的一些东西,如下所示:
<ExePackage Id="ABC" DetectCondition="no" Permanent="no" SourceFile="scripts\adjustStuff.cmd" Vital="no" After="XYZ" />
然而,当Bundle执行脚本时,没有打开终端。
但实际上我需要用户与终端进行交互。有办法实现这个吗?
英文:
Hello together I have a script with some commands adjusting some things on the system that I am using within the Chain of a Burn Bundle like this:
<ExePackage Id="ABC" DetectCondition="no" Permanent="no" SourceFile="scripts\adjustStuff.cmd" Vital="no" After="XYZ" />
However when the Bundle executes the script there is no terminal open.
But I actually need the user to interact with the terminal. Is there any way to achieve this?
答案1
得分: 1
不支持今天。
英文:
No. That is not supported today.
答案2
得分: 0
虽然它不会直接通过 WiX 运行。您可以调整批处理脚本并通过启动命令执行命令,启动一个新的终端。
例如:
start /max cmd /k "command1 /para1 /para2 & command2 ...."
英文:
Although its not working directly through WiX. You could adjust your batch script and executing the commands via the start command which starts a new terminal.
For example:
start /max cmd /k "command1 /para1 /para2 & command2 ...."
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论