Wix Burn Bundle: 显示 ExePackages 输出

huangapple go评论49阅读模式
英文:

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 ...."

huangapple
  • 本文由 发表于 2023年6月26日 20:29:41
  • 转载请务必保留本文链接:https://go.coder-hub.com/76556693.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定