Kill a process started with Groovy execute() - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T16:48:41Z http://stackoverflow.com/feeds/question/473724 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/473724/kill-a-process-started-with-groovy-execute 1 Kill a process started with Groovy execute() greymatter 2009-01-23T17:11:00Z 2009-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#474080 1 Answer by greymatter for Kill a process started with Groovy execute() greymatter 2009-01-23T19:07:50Z 2009-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>