fun excCommand(cmd: String) { val rt = Runtime.getRuntime() try { rt.exec(arrayOf("cmd.exe", "/c", cmd)) } catch (e: IOException) { // TODO Auto-generated catch block e.printStackTrace() } }