I am having a simple question, having simple batch script:
for /l %%x in (1, 1, 3) do start /wait c:\some.exe -verbose c:\someLog.txt del c:\someLog.txt
after each execution file creates log, and I want to remove that log before next loop execution, execution works fine but when I add del command its having problems, it looks like log is being deleted to early.
Is there a possible way to delay del command ??