"Eric" <(E-Mail Removed)> wrote in message
news

8D41062-BB00-4136-9882-(E-Mail Removed)...
> Thank you very much
>
> Do you know how to add a command to close automatically the DOS command
> window after opening all files?
> Thank you very much
> Eruc
Batch files have always closed automatically for me, but if they aren't
doing the same for you then you can add the exit command at the end of your
batch file.
So it would look like this:
start Movies.txt
start autoruns.exe
exit
The exit command closes the Command Prompt window.
-Dan