Search found 2 matches

by Waynes
27 Aug 2013 07:05
Forum: DOS Batch Forum
Topic: Closing Java console in a .bat file
Replies: 5
Views: 9309

Re: Closing Java console in a .bat file

if you start the java with wmic you'll receive the PID of the java process and you'll be able to kill it by PID wmic process call create "C:\Program Files\Java\jre6\bin\javacpl.exe" This does not work. Even if I get the PID and then use taskkill /f /fi "pid eq ????" where ???? i...
by Waynes
23 Aug 2013 08:16
Forum: DOS Batch Forum
Topic: Closing Java console in a .bat file
Replies: 5
Views: 9309

Closing Java console in a .bat file

Hi, I work for a local council that for some reason has purchased an application that is very flaky when using Java. Certain web screens will not launch and the only way I have found to resolve the problem is to manually open up the Java Console and immediately close it prior to launching the web pa...