close command / dos window

82 次查看(过去 30 天)
Tyler Murray
Tyler Murray 2016-9-6
I am running a .bat file using either system() or dos() which opens a cmd window. I would like to close the cmd window when it is done. I have searched on here but haven't found a solution that works.

回答(4 个)

Kevin Rawson
Kevin Rawson 2019-4-7
Simplest way without modifying your original batch file would be to add an exit command to your system call.
system('yourScript.bat && exit &')
This will complete execution of "yourScript.bat" in a new DOS command window, and then close the spawned window.

dpb
dpb 2017-6-5
If you must use the trailing '&' to dispatch the command window to the background while the Matlab system continues, then you don't have control of that window with just the supplied system. Others have shown a way to kill a process; the alternate would be to add an EXIT command as the last entry in the .bat file to close the session when the routine terminates.

Nagesh
Nagesh 2017-1-11
编辑:Walter Roberson 2017-1-12
let's say you want to kill both your progam (yourprogram.exe) and the cmd window that gets opened with the system command, you can use the following command
[status1]=system('"C:\Windows\System32\taskkill.exe" /F /im yourprogram.exe /im cmd.exe &');
This will kill 'yourprogram' and also closes 'cmd' window
  2 个评论
Walter Roberson
Walter Roberson 2017-1-12
That looks to me as if it would close all of the command windows. You might plausibly have another one that you did not want closed.
dpb
dpb 2018-12-27
编辑:dpb 2018-12-27
The other issue is that passing off TASKLIST or TASKKILL to the system via dos() spawns a new CMD.EXE besides any other that may be open -- w/o some other variable like the WINDOWTITLE if it were set uniquely when the process was started, you can't tell "who's who in the zoo" as to which it is, specifically, to kill.
(I was just thinking about the same problem as was spawning a bunch of editor windows to do some cleanup on Excel spreadsheet comments outside the sorry edit function it supplies for the purpose internally which is got me here now...)
ADDENDUM
I'd done this ages ago and had forgotten all I once knew...ran into one kicker I can't presently seemingly get around -- tasklist /fi "WINDOWTITLE eq title string" never returns a match, even if copy and paste what is returned by the /V option for the specific window so can't find a unique CMD.EXE amongst others that way, either. :(
ADDENDUM SECOND
Albeit one could return the list of all and parse it separately to find the PID, I suppose...
ADDENDUM THIRD
The simplest answer (just tested) is to do as suggested in above Answer; just add exit to the batch file to close the shell when the app exits back to command line. Done!

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2016-9-7

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by