Ciao,
Ho eseguito un robocopy sul domain controller Windows 2012.
Questo è il contenuto del file batch:
-----------------------------------------------------------------------------------
SETLOCALSET _source=z:\
SET _dest=y:\
SET _what=/COPYALL /E
:: /COPYALL :: COPY ALL file info
:: /B :: copy files in Backup mode
:: /E :: copy Subfolders, including subfolders empity
:: /SEC :: copy files with SECurity
:: /MIR :: MIRror a directory tree
SET _options=/R:0 /LOG:log_della_copia_effettuata.txt /NFL /NDL
:: /R:n :: number of Retries
:: /W:n :: Wait time between retries
:: /LOG :: Output log file
:: /NFL :: No File Logging
:: /NDL :: No Directory Logging
ROBOCOPY %_source% %_dest% %_what% %_options%
-------------------------------------------------------------------------------
Questo è il file di log con gli errori:
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows :: Version XP010
-------------------------------------------------------------------------------
Started : Tue Dec 11 09:57:40 2018
2018/12/11 09:57:40 ERROR 3 (0x00000003) Getting File System Type of Source z:\
The system cannot find the path specified.
2018/12/11 09:57:40 ERROR 3 (0x00000003) Getting File System Type of Destination y:\
The system cannot find the path specified.
Source - z:\
Dest - y:\
Files : *.*
Options : *.* /NDL /NFL /S /E /COPYALL /R:0 /W:30
------------------------------------------------------------------------------
NOTE: NTFS Security may not be copied - Source may not be NTFS.
NOTE: NTFS Security may not be copied - Destination may not be NTFS.
2018/12/11 09:57:40 ERROR 3 (0x00000003) Accessing Source Directory z:\
The system cannot find the path specified.
---------------------------------------------------------------------------------------------
A cosa può essere dovuta la non riuscita del comando?