It it possible to get the location of the jre that is used for the current process. Need to launch an other java application as a separate process. Having different jre\'s a
System.out.println(System.getProperty("java.home"));
The code above will return the full physical path to current jvm's jre path. Tested only in Windows 10.