Ho il seguente script batch che esegue diversi processi e dovrebbe reindirizzare i loro output in alcuni file di registro, tuttavia quando i processi terminano l'esecuzione dei file sono vuoti anche se riesco a vedere le finestre riempite di testo.
@echo off
set /p guid=Please enter GUID:
start /wait Debug\Debug\Ylp.Web.CmsImportWebJob.exe /test map %guid% > map.txt
start /wait Debug\Debug\Ylp.Web.CmsImportWebJob.exe /test compare %guid% > compare.txt
start /wait Debug\Debug\Ylp.Web.CmsImportWebJob.exe /test analyse %guid% > analyse.txt
start /wait Debug\Debug\Ylp.Web.CmsImportWebJob.exe /test update %guid% > update.txt
pause