I have the following problem:
I have created a batch script which calls itself in there (for being able to write a log in parallel). In the script I start another pr
I guess your problem lies within the start
command. The following excerpt from the start /? help might point to the issue:
command/program
If it is an internal cmd command or a batch file then the command processor is run with the /K switch to cmd.exe. This means that the window will remain after the command has been run.
If it is not an internal cmd command or batch file then it is a program and will run as either a windowed application or a console application.
As a solution you could try to modify the start command like this:
start "" cmd /c "startServer.bat"