我想在安装完成后启动我成功安装的
Java程序.我原则上知道如何做到这一点:
[Run] FileName: "{app}\LaunchApp.bat"; Description: {cm:LaunchApp}; Flags: nowait postinstall skipifsilent
LaunchApp.bat:
start javaw -jar MyJar.jar Main
这样,控制台窗口会弹出一段时间,这不是很好.使用链接,可以避免这种情况.但是,我似乎无法执行[Run]部分[Icon]中创建的链接.
有什么建议怎么解决这个?
解决方法
尝试添加
runhidden
标志.从参考:
If this flag is specified,it will launch the program in a hidden
window. Never use this flag when executing a program that may prompt
for user input.
所以这应该解决你的问题:
[Run] FileName: "{app}\LaunchApp.bat"; Description: {cm:LaunchApp}; Flags: nowait postinstall runhidden skipifsilent