1

I want to execute java application without displaying popup console. It because in 64bit applicaton, the GUI (console) will created in different session ID. I even use Java Service Wrapper, but the batch file still showing an popup console. So, how can I execute java application without displaying popup console? Or there any alternative way?

1 Answers1

0

Running following command in command prompt, or through a batch file should help you:

start javaw -jar -Xms1024m -Xmx1024m <Your Jar File>

Refer to this thread for more.

Community
  • 1
  • 1
Vivek Gupta
  • 2,534
  • 3
  • 15
  • 28