I am trying to execute a file by placing the appropriate command into a batch file. After completing the file execution the command window is not closing automatically. I tried
The /w parameter makes START wait until the process it launches has exited. Remove it:
/w
START
start "" /B /d ...
This will let your batch file continue running and exit immediately.