您好,我想知道是否有任何方法可以禁用非组件形式的安装组件的复选框,以及是否有任何方法可以检查install4j安装程序是否已安装组件。也就是说,我安装了4个组件之一,然后再次运行安装并禁用已安装的组件。
答案 0 :(得分:0)
You can call
context.getInstallationComponentById("<ID>").setSelected(selected);
in a "Run script" action where <ID>
is the ID of the installation component.
Checking for the last selection state is analogous:
context.getInstallationComponentById("<ID>").isSelected()