I would like to mirror a directory with robocopy without any output except for the status header and the summary at the end. The command I am using at the moment is robocopy /MIR /NFL /NDL /NC /NS /NP dir1 dir2
. If I create a file in dir2
that is not present in dir1
and run this command it gets deleted (as expected) but also generates output (not expected and not wanted). Is there a way to make robocopy behave like I want?
Edit: I still want to see the Job Header and Job Summary though.