Saved Bookmarks
| 1. |
Solve : close the console window from batch? |
|
Answer» HI! my batch file STARTED to play a video with camtasia player: @ECHO off CamPlay.exe /M /S test_TSCC.avi @exit i would like to close the cmd WINDOW while the video is playing, but it seems the @exit statement is unreachable, the console window appear all along. Does anybody know how i could close the cmd window? Thanks!Use the START command like this then the Camplay app will be started and control will pass back to the batch which will then process the next line. You don't need the exit command if there are no more lines, because the batch will exit anyway, and you did not need the @ sign before exit, because you already TURNED command echo off at the beginning. Quote okay, thank you very much! |
|