Hi,

with follwing examples You can report each copy it was done. The first line will report in a file and the second on the STDOUT.

code:

@ECHO OFF
For /f "tokens=*" %%a in ('dir c:\Daten\*.kix /s /b ') do (echo "%%a" copied successfully >> C:\Temp\cp.log | Copy "%%a" C:\Temp)
For /f "tokens=*" %%a in ('dir c:\Daten\*.kix /s /b ') do (echo "%%a" copied successfully | Copy "%%a" C:\Temp)

I hope that is what´s You want.

Tom