To make the command window of a .bat file that executes a .exe file exit out as fast as possible, use the line @start
before the file you're trying to execute. Here is an example:
(insert other code here)
@start executable.exe
(insert other code here)
You don't have to use other code with @start executable.exe
.