I have Linux and use via exec() the native shutdown/kill-process commands. For example:Runtime.getRuntime().exec("pkill -f xyz")May be you can use native procedures of your OS too?Greetings,lacarpe
When you lanuch an application from another one using Runtime.getRuntime().exec(str); it provides you an instance of Processlike proc = Runtime.getRuntime().exec(str);and on proc you can use proc.destroy(); to kill the application.