For a specific java program I needed more memory then the standard amount, but I cannot use command line to get more because it uses a launcher.
I tried adding “-Xms1024m -Xmx1024m” to the runtime parameters in the Java Control Panel, this worked once but the next time I started the program the memory was back to the low default.
How can I reliably get more memory for this program?
The .exe launcher appeared to in turn update and launch a .jar launcher.
I fixed the problem by simply adding the memory parameters to a command line command to start the .jar launcher. It doesn’t automatically update the launcher this way but it’s good enough.