The meaning of this title is that, for example, when the xcopy command is executed, many execution results will be displayed on the screen:
---------------------------------------
\\192.168.1.1\update\1.txt
\\192.168.1.1\update\2.txt
\\192.168.1.1\update\3.txt
3 files copied
---------------------------------------
If I need to save this command result to d:\a.txt, so I used xcopy ....>d:\a.txt, but the result is that the above execution results will not be displayed on the screen. Although now I can add a line at the end type d:\a.txt to output the just result on the screen, but it has a lag effect. And it is not the same as before that every time xcopy a file will dynamically display the execution result on the screen.
Now I want to ask if there is a statement that can not affect the display result on the screen and at the same time save the result to a file.
---------------------------------------
\\192.168.1.1\update\1.txt
\\192.168.1.1\update\2.txt
\\192.168.1.1\update\3.txt
3 files copied
---------------------------------------
If I need to save this command result to d:\a.txt, so I used xcopy ....>d:\a.txt, but the result is that the above execution results will not be displayed on the screen. Although now I can add a line at the end type d:\a.txt to output the just result on the screen, but it has a lag effect. And it is not the same as before that every time xcopy a file will dynamically display the execution result on the screen.
Now I want to ask if there is a statement that can not affect the display result on the screen and at the same time save the result to a file.

