This is a batch file in Windows.
Here is my .bat file
@echo off
copy \"C:\\Remoting.config-Training\" \"C:\\Remoting.config\"
\"C:\\ThirdPar
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.