Kill a process started with Groovy execute() - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T16:48:41Zhttp://stackoverflow.com/feeds/question/473724http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/473724/kill-a-process-started-with-groovy-execute1Kill a process started with Groovy execute()greymatter2009-01-23T17:11:00Z2009-01-23T19:07:50Z
<p>I'm able to run Groovy scripts from Groovy using</p>
<p>proc = "cmd /c groovy BillingServer.groovy".execute(null, new File("C:\"))</p>
<p>However, I can't find a way to then terminate/kill the process. waitForOrKill(1) and destroy() "act" like they've worked, but the external process continues to run. Calling exitValue() fails with </p>
<p>java.lang.IllegalThreadStateException: process has not exited</p>
<p>How do I kill the process I've started?</p>
http://stackoverflow.com/questions/473724/kill-a-process-started-with-groovy-execute/474080#4740801Answer by greymatter for Kill a process started with Groovy execute()greymatter2009-01-23T19:07:50Z2009-01-23T19:07:50Z<p>I solved this by removing "cmd /c" from the string to be executed. It seems that cmd was spawning groovy, so waitForOrKill() was killing the cmd process, but the groovy process was left running. Without the "cmd /c", I am spawning a groovy process, and waitForOrKill() successfully kills it.</p>