How can I make robocopy silent in the command line except for progress?

前端 未结 8 1821
说谎
说谎 2020-12-22 23:30

I\'m using robocopy to do backups with a PowerShell script, and it\'s pretty awesome, except that I\'d like it to only show the progress percentage while it copies and not a

8条回答
  •  盖世英雄少女心
    2020-12-22 23:57

    If you want no output at all this is the most simple way:

    robocopy src dest > nul

    If you still need some information and only want to strip parts of the output, use the parameters from R.Koene's answer.

提交回复
热议问题