Since you need to duplicate a large number of files from your PC to a network server. The Windows command line tools that would have been BEST to use is robocopy
It is one that is similar to rsync on UNIX, Robocopy is a powerful file-copying application that is incorporated into Windows. It is an excellent tool for data backup and a much better way to copy huge datasets or lots of files between drives. It has a number of choices, the capacity to continue halted copies, and the ability to log while copying.
Robocopy, which stands for "Robust File Copy," is a directory and/or file replication command for the Microsoft Windows operating system. Xcopy is functionally replaced by Robocopy, which has additional features.
Therefore, one can run this command to copy a folder's contents, including all of its files and subfolders: Robotic copy /E /DCOPY:DAT /R:10 /W:3 c:temp source c:temp destination. Robocopy is instructed to copy every subfolder, even empty ones, when the /E flag is used. Use the /S switch to avoid copying empty subfolders. 1
Learn more about robocopy from
https://brainly.com/question/15231158
#SPJ1