Link to home
Create AccountLog in
Avatar of CHECK24
CHECK24

asked on

Richcopy Security informations

Hi Guys,

my project is to copy our homedrives to another destination. (source and destination is local).
I`ve already downloaded "Richcopy" which is rated as very powerfull.

My problem is to copy the files with the included security informations.
Copying the stuff, no problem, but the sec infos are not copied.

I`ve tried it with robocopy also, doesn`t work. Win2008 R2
/COPYALL /E /R:0


 User generated image
Avatar of Joseph Daly
Joseph Daly
Flag of United States of America image

I cant really say too much about richcopy as i havent used it too much but is you use robocopy you should be able to use the following switches correctly.

/mir /sec /copyall /zb

Be careful with the MIR command is it will delete the destination files if they are not in the source. This isnt a big deal if the location you are copying to has no data in it.

Also make sure that the destination drive is configured as an NTFS drive.
ASKER CERTIFIED SOLUTION
Avatar of CHECK24
CHECK24

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
The mir switch goes by modified date/size/changed data in the file. The mir will also mirror the directory tree so it can delete if a file isn't in the source but is in the destination.

Avatar of CHECK24
CHECK24

ASKER

thanks