Close Batch Window After Execution
Posted on Tuesday, March 9, 2010 in MS OS
Example will start exe file and close window, good for batch files
ECHO off
ECHO.
ECHO Starting file.exe
ECHO.
start "" "C:\dir\file.exe"
ECHO.
ECHO Done
ECHO.
Also can use /MIN to start app window minimized like:
start /MIN "" "C:\dir\file.exe"
