66.7k views
3 votes
2. Use the Internet to research Robocopy switches and then construct a command line that will use Robocopy to copy files in restart mode from a source to a destination mirroring the folder structure and using FAT file times. The command should retry the copy in case of a failed attempt.

User Shakti
by
4.4k points

1 Answer

1 vote

Answer:

The description for the given question is described in the explanation section below.

Step-by-step explanation:

ronocopy c:/source c:/destination /e /Z /FFT /R:n

here,

  • source = Name of root or source folder.
  • destination = Name of target tab (destination),.
  • /e = Command or order to copy through source to target, all files and directories.
  • /Z = Command to restore and copy documents or files.
  • /FFT = Using FAT file duration command.
  • /R:n = Command to redo a duplicate in the circumstance of such an unsuccessful attempt is one million times per default n.
User Denko Mancheski
by
4.1k points