install4j

Running install4j on 64bit JRE in Win

有些话、适合烂在心里 提交于 2019-12-11 11:12:39
问题 Is it possible to create via Install4J a single media file for Windows that can run in both cases when user has 32bit or 64bit JRE installed? I have a case where I'm wrapping an application that has no need for 64bit OS features. So I have selected a 32bit (Install4J) executable to be generated. Eventually we experienced problems when we have tried to install on 64bit Win7 that has 64bit JRE installed . Installer complained about a missing 32bit JRE. In Help Guide of Install4J I have found

Install4j: modifying/ having a custom installation location screen

て烟熏妆下的殇ゞ 提交于 2019-12-11 10:49:14
问题 My main target is to modify the required disk space showed in the "Installation location" screen as my software requires more than the spaces the installer counts. But from the properties of the screen, it does not seem that the required disk space can be configured from here. So, from the knowledge I have about Install4j, I have found the only way is to create a configurable from. For better understanding I have added the picture of the screen here: now I was looking for a from component

Want to Remove Icon from Language Selection Screen

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-11 09:58:40
问题 I have a Requirement to Remove Icon shown in Language selection as shown below. How Can I achieve this? I want replace custom image in language selection, marked red below. I tried to use a custom icon in the "Executable icon" property of the installer. It is changing only the screen title window ICON not screen body Image. However screen body is still showing the default image not custom image 回答1: You cannot remove the icon, but if you specify a custom icon in the "Executable icon" property

How to configure compile-jre on build agents?

廉价感情. 提交于 2019-12-11 09:28:20
问题 Our development environment consist of several build agents who builds the installer mediums. Today we had a compile error inside of install4j at one of the build agents. The class version didn't match with some custom classes. We found out that the installed jre on the build agent were a jre_1.6 x32 and a jre_1.7 x64. The project setting was set to create a x32 installer medium with a minimum java version of 1.7. Therefore the search algorithm of install4j (%JAVA_HOME% etc.) used the jre_1.6

How to customize disk space unit of install location dialog?

可紊 提交于 2019-12-11 09:18:00
问题 We want to setup the disk space unit from MB to GB. Is there any option to switch the unit? Or is it only possible to change the label itself within an pre-activation script? 回答1: Currently this is not possible, the value will always be displayed in MB. I've created an issue for 6.0, so that the displayed value automatically switches to GB if the free disk space is large enough. 来源: https://stackoverflow.com/questions/23516604/how-to-customize-disk-space-unit-of-install-location-dialog

Can install4j update the xml files in the .war or .jar during 'Installer->Installation'?

跟風遠走 提交于 2019-12-11 09:14:16
问题 This question is in regards to install4j 4.2.8. We can get the users' information from their input. It's easy to update the xml files with users' input. But is it possile to replace the xml files in the war/jar file with above modified xml files during installation? Is there any action can do this job? 回答1: You would have to extract the WAR file to a temporary directory with a "Extract ZIP file" action, run the "Replace text in XML files" action on the XML file and use a "Create a ZIP" file

code signing error with install4j

≡放荡痞女 提交于 2019-12-11 09:05:12
问题 When I try to sign my exe using a p12 keystore I get the following error: codesigning.p12 does not contain the complete certificate chain However, I can sign it without problem using the windows signTool.exe by executing: signtool sign /f codesigning.p12 /p $keyStorePassword myprogram.exe Any ideas how to get this working in install4j? 回答1: signtool can access intermediate certificates in the Windows keystore, something that install4j does not do. Other than creating a self-contained

How to change the file ACL in windows, if I only know the SID?

倾然丶 夕夏残阳落幕 提交于 2019-12-11 07:44:30
问题 I want to change the ACL of a file and set "full permissions" to a special user. I know the cacls-command cacls . /e /t /p Everyone:f But this only works if the OS is english. For german systems, it must be cacls . /e /t /p Jeder:f . I know the well-known SIDs of the user "everyone" (S-1-1-0), but it seems as if I can't use them with cacls. I tried cacls . /e /t /p S-1-1-0:f . Is there a way to use windows command line tools for this jobs? I'm not allowed to bundle software or other

Can you use nodejs with install4j

守給你的承諾、 提交于 2019-12-11 07:37:02
问题 Can you use install4j with nodejs? I have a server I need to have an installer for, can install4j work with this? If not do any of you know something that can/ Other installers seem that would take a lot of time to solve my issue, since I also need information from the user (like paths.) 回答1: You can install anything with install4j. However, the installer requires a JRE to run so you have to bundle one with it, even though you don't need it for your installed application. Also, a lot of

Install4j - How can I install the MSVC++ Redistributable Binary if needed?

情到浓时终转凉″ 提交于 2019-12-11 07:35:54
问题 I'm wondering if there's some way to use my install4j utility to handle installing the MSVC++ redistributable libraries if they are not already on the client machine? Is there anyone who has an example of how they did that to save me from re-inventing the wheel? 回答1: You can use the "Run executable or batch file" action to run an external installer. Most installers have an "unattended" mode that does not require user interaction. Activating unattended mode for the MSVC++ redistributable