I am running an external .bat file through matlab. The code is as follows:
fileName = uigetfile('*.*');
cmd = sprintf(program.bat "%s" &', fileName);
system(cmd);
The user gets to pick which file is run through the .bat file and then it runs. The problem I am trying to solve, which I am not even sure it's possible, is to close the cmd window after it is done autonomously. The reason this is difficult is because after the program is done running, if you press enter, it prompts excel to open and displays the results in excel which I am trying to avoid. Thus, I don't think I can write a simple exit command. I also do not have access to the batch file to rewrite that code.

1 件のコメント

Jan
Jan 2016 年 11 月 24 日
How can you notice, that your external program is ready?

サインインしてコメントする。

 採用された回答

Walter Roberson
Walter Roberson 2016 年 9 月 27 日

0 投票

There are a few approaches:
  1. Java Robot Class to position on top of the command window and send the key/mouse sequence to close it;
  2. call taskmanager to kill the process
  3. instead of using system() use one of the activex / DCOM methods to create a process and send it a command line; you can then also kill off the process. I know this is possible, and I know someone showed how to create a process not long ago, but I am having difficulty finding the appropriate sequence at the moment.

3 件のコメント

Tyler Murray
Tyler Murray 2016 年 9 月 27 日
Thanks for the start! Glad to know its possible haha I'll keep giving it a shot. If you remember the sequence please post it here!
Tyler Murray
Tyler Murray 2016 年 9 月 29 日
Do you have any experience with Java Robot Class? I can't find anything online with how to position the cursor over the command window or any program?
Walter Roberson
Walter Roberson 2016 年 9 月 29 日

サインインしてコメントする。

その他の回答 (1 件)

Mikhail
Mikhail 2016 年 11 月 24 日

1 投票

Much easier:
fileName = uigetfile('*.*');
cmd = sprintf('start program.bat "%s"', fileName);
system(cmd);

7 件のコメント

Walter Roberson
Walter Roberson 2016 年 11 月 24 日
That does not automatically close the command window after the program is done autonomously. It does not return to MATLAB until the program finishes.
Mikhail
Mikhail 2016 年 11 月 25 日
It does do both of these.
my.bat:
REM exit after 5 seconds
@ping 127.0.0.1 -n 5 -w 1000 > nul
exit
Then:
system('start my.bat')
Walter Roberson
Walter Roberson 2016 年 11 月 25 日
Your example exits after a few seconds. Until it does that, MATLAB is not given back control. The user is using a program that they want to run independently until it is time to kill it, and does not want the program to run to completion
Mikhail
Mikhail 2016 年 11 月 25 日
編集済み: Mikhail 2016 年 11 月 25 日
Have you tried that? The system('start my.bat') returns control to MATLAB immediately. The black cmd window does its stuff, and then closes cleanly. I think this is what the user wanted.
Walter Roberson
Walter Roberson 2016 年 11 月 25 日
I did overlook the start. But your solution assumes that the process ends nicely by itself. In the user's case the process hangs around waiting for return to be pressed. Though I am not sure how it would read that if input is disconnected as I would expect when & is used, unless it is opening a graphics window.
Mikhail
Mikhail 2016 年 11 月 25 日
It the process doesn't exit by itself, wrap it in another bat file like that:
my.bat:
REM exit after 5 seconds
@ping 127.0.0.1 -n 5 -w 1000 > nul
my_wrapper.bat:
call my.bat
exit
Then:
system('start my_wrapper.bat')
That is all to it.
Walter Roberson
Walter Roberson 2016 年 11 月 25 日
Now try again with a process that does not exit by itself -- for example a ping that would go on forever until it is interrupted.
The user wants to be able to start an asynchronous process of indefinite duration and kill it at some later time before it has finished. The solutions I gave are various methods of killing asynchronous processes.

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by