I'm trying to robocopy some files silently. Right now, I have robocopy putting everything into a log file, which is fine, but after it finished, Log File: C:\<logfiledestination>
is printed. My command looks like this:
robocopy source destination /mir /xd .svn /log:log.txt /np >nul 2>&1
.
From searching online, I thought that >nul 2>&1
would have prevented anything from showing up. I'm extremely new to the windows command line, so if I'm doing something wrong, please let me know!
Edit: I had a phantom half-sentence in there that I missed. Fixed now though.
These switches worked for me:
/NFL : No File List - don't log file names.
/NDL : No Directory List - don't log directory names.
/NJH : No Job Header.
/NJS : No Job Summary.'
It looks like these two options may be of help to you:
/NJH :: No Job Header.
/NJS :: No Job Summary.