I need to redirect output of the start command to the log.txt file (in case of the path is wrong for example) but not of the process it launches. Because if the process.exe is running longer time, the next output can not be written to the log file, because it is locked by the process.
start "" "path\to the\process.exe" >> log.txt 2>&1
echo next output >> log.txt
One option: