cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
jakobsachs
Level 3

Windows 64 Bit Installer doesnt start/crashes

Im building an Installer formultiple platforms and when i try to install the one generated for Windows_Pure_64_Bit it crashes before loading properly with the message:

This Application has Unexpectedly Quit

Invocation of this Java Application has caused an InvocationTargetException. This application will now exit (LAX)

This is the Stacktrace I get under 'details': 


Flexeraaxd$aaa: C:\Users\User\AppData\Local\Temp\I1604414720\Windows_Pure_64_Bit\resource\iawin32.dll not found
at Flexeraaxd.af(Unknown Source)
at Flexeraaxd.aa(Unknown Source)
at com.zerog.ia.installer.LifeCycleManager.init(Unknown Source)
at com.zerog.ia.installer.LifeCycleManager.executeApplication(Unknown Source)
at com.zerog.ia.installer.Main.main(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.zerog.lax.LAX.launch(Unknown Source)
at com.zerog.lax.LAX.main(Unknown Source)

Help is appreciated

0 Kudos
(1) Reply
VineethaNair
Level 6

Hi @jakobsachs,

The issue seen is due to the use of 32 Bit  java for Windows 64 Bit installer.
Have to use 64 Bit java.
Please  verify that the java used/bundled is 64 Bit.

Try using LAX_VM parameter to override the JRE that the installer uses
as follows:

<InstallerName>  LAX_VM <full_path_to_64Bit_java_executable>
Eg:
install.exe   LAX_VM   "C:\Program Files\Java\jdk-9\bin\java.exe"


And Windows OS should be 64 bit.
Windows Pure 64 Bit installers cannot be run on 32-bit Windows-based systems.

0 Kudos