我创建自定义操作:
<CustomAction Id="LaunchApplication" FileKey="FileKeyExe" ExeCommand="" Return="asyncNoWait"/>
并在安装后执行文件:
<InstallExecuteSequence>
<Custom Action="LaunchApplication" After="InstallFinalize"></Custom>
</InstallExecuteSequence>
一切正常!
但我需要使用命令参数运行我的.exe文件。我怎么能这样做?
答案 0 :(得分:0)
要发送exe命令行参数,您需要将它们包含在ExeCommand字段中,例如
<CustomAction Id="ExecutingAwesomeness" ExeCommand="Awesome.exe -fireworks -parade" />