5

У меня есть задание robocopy , которое контролируется планировщиком задач Windows и запускается каждые 15 минут для перемещения файлов с одного сервера на другой. Согласно планировщику заданий Windows, задание выполняется нормально. Однако - ни один из файлов не перемещается.

Вот полный сценарий:

net use v: \\serverone /user:UserName PassWord
robocopy v:\ "\\servertwo\folder" /MOV
net use v: /d /yes
exit

Есть ли способ добавить протоколирование в задание robocopy, которое бы зафиксировало ошибку, чтобы я мог выяснить, почему файлы не перемещаются?

1 ответ1

7

Из робокопии /?

::
:: Logging Options :
::
                 /L :: List only - don't copy, timestamp or delete any files.
                 /X :: report all eXtra files, not just those selected.
                 /V :: produce Verbose output, showing skipped files.
                /TS :: include source file Time Stamps in the output.
                /FP :: include Full Pathname of files in the output.
             /BYTES :: Print sizes as bytes.

                /NS :: No Size - don't log file sizes.
                /NC :: No Class - don't log file classes.
               /NFL :: No File List - don't log file names.
               /NDL :: No Directory List - don't log directory names.

                /NP :: No Progress - don't display percentage copied.
               /ETA :: show Estimated Time of Arrival of copied files.

          /LOG:file :: output status to LOG file (overwrite existing log).
         /LOG+:file :: output status to LOG file (append to existing log).

       /UNILOG:file :: output status to LOG file as UNICODE (overwrite existing log).
      /UNILOG+:file :: output status to LOG file as UNICODE (append to existing log).

               /TEE :: output to console window, as well as the log file.

               /NJH :: No Job Header.
               /NJS :: No Job Summary.

           /UNICODE :: output status as UNICODE.

Поэтому я бы попробовал что-то вроде:

robocopy v:\ "\\servertwo\folder" /MOV /V /LOG:file.log

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .