I've also found some quirks with older versions of robocopy - please check the version and update it to the latest, if necessary...
Main Topics
Browse All TopicsNeed to run a robocopy script in a backup mode to copy 800 GB of data from a server to an exteran USB drive. So that once it is backed up on the external drive then the next time it should copy only the changes. Also it should keep the original meta data of the files. I used the following scipt but its not terminating after finishing and also its not keep the meta data of the files.
@ECHO OFF
SETLOCAL
SET _source=\\FileServ1\e$\use
SET _dest=\\FileServ2\e$\Backu
SET _what=/COPYALL /B /SEC /MIR
:: /COPYALL :: COPY ALL file info
:: /B :: copy files in Backup mode.
:: /SEC :: copy files with SECurity
:: /MIR :: MIRror a directory tree
SET _options=/R:0 /W:0 /LOG:MyLogfile.txt /NFL /NDL
:: /R:n :: number of Retries
:: /W:n :: Wait time between retries
:: /LOG :: Output log file
:: /NFL :: No file logging
:: /NDL :: No dir logging
ROBOCOPY %_source% %_dest% %_what% %_options%
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hmm - the /copyall should
which is equivalent to
/copy:DATSO
D-> Data
A-> Attributes
T-> Time stamps
S-> Security
O-> Owner info
If you're using datso, it should be keeping the time stamps - I'm not sure about metadata if it even has that capability with robocopy...never really thought to look, to be honest (assuming you mean like album/artist info, etc?)
Business Accounts
Answer for Membership
by: sirbountyPosted on 2008-11-25 at 12:08:49ID: 23037363
What if you remove all the 'fluff' there and just go with the actual robocopy string?
I.e:
Select allOpen in new window