Hi,
We upgraded from 5.1.0 to 5.6.9 release on our Windows 2003 server systems.
An example of batch file is the following:
del D:\prod\Parcol\bin\temp.txt >null
dir /B D:\prod\Parcol\work\*.p7m > D:\prod\Parcol\bin\temp.txt
for /F %%I in (D:\prod\Parcol\bin\temp.txt) do call detach.bat "D:\prod\Parcol\work\%%I"
pause
exit 0
the call do detach.bat is needed to call another program, but if we call directly from this batch nothing change: VC run the batch (so it appers in main window), but really the batch is not executed, no error is spawned, tasks after the batch are launched, job finishes with a lot or damage in output because job didn't stopped after errors.