Robocopy Help

Soldato
Joined
12 Dec 2003
Posts
2,588
How can I make robocopy show the % progress in the console window but NOT in the log file? Currently my script looks like this:

robocopy L:\test M:\test /E /R:5 /W:2 /LOG:M:\backup-log-1.txt /TEE

using that displays loads of increasing % in the log file but using the /np switch means I dont get to see the progress in the command window.
 
i don't think you can. i noticed this when i first started using robocopy and found the /np switch because it makes the log a right mess otherwise.
 
Hmm, thats a bit annoying. You're right, the log file is stupidly messy without the /np switch. There really should be specific settings for the logfile.
 
Do you really need to see the output if you are logging it?

I suppose it would be nice to have the option either way, but I consider the whole point of logging is so you don't have to watch the output! :p
 
Back
Top Bottom