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?
Asked
Active
Viewed 598 times
1 Answers
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