install4j:如何禁用更新上的第二次安装选项
我使用 install4j 创建了我的第一个安装程序。现在我尝试更新我的应用程序,它有效,但系统询问我是否要进行更新或附加安装。
我只想要更新选项。我该怎么做?
谢谢, 基督教。
I created my first installer with install4j. Now I tried an update of my application, and it works, but I am asked if I want to make an update or an additional installation.
I only want the option for update. How can I do this?
Thanks,
Christian.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在安装程序的“欢迎”屏幕上禁用“更新安装警报”属性,并在条件表达式中使用
context.isUpdateInstallation()
来隐藏某些屏幕(例如“安装位置”屏幕)
Disable the "Alert for update installation" property on the "Welcome" screen of your installer and use
context.isUpdateInstallation()
in condition expressions to hide certain screens (for example the "Installation location" screen)