1.

Solve : how to create message after the application exit?

Answer»

hi,
I have a batch file that will call and run the other application
this application will automatically exit without the help of the batch file.
My question is after the application close, how can I add a message into a batch file that will make a message like "process COMPLETED" this message will not appear if the application.exe is still open.

Example:
echo loading application.exe
start /min call c:\application.exe

(application.exe opened and running after the application closed)

echo Process Completed!!
echo Goodbye!!

Thank you.


1. You didn't need the "call". Why is it there?
2. USE start /min /wait c:\application.exe

information about start (like most commands) is available at the prompt by typing the command name followed by /?

e.g. start /?


Quote from: contrex on OCTOBER 02, 2007, 10:37:01 AM

1. You didn't need the "call". Why is it there?
2. Use start /min /wait c:\application.exe

information about start (like most commands) is available at the prompt by typing the command name followed by /?

e.g. start /?

thanks, the "call" is not ACTUALLY on my commands, I just incidentally included it.
anyway, is there any idea how to solve my problem?

thanks



Quote from: best007 on October 02, 2007, 07:29:22 PM
anyway, is there any idea how to solve my problem?

Yes! Read my last post again!


Discussion

No Comment Found