Link to home
Start Free TrialLog in
Avatar of syseng007
syseng007

asked on

Copy File Share 2003 to 2008 Using Robocopy

I'm moving files from file server 2003 to 2008 using robocopy. The NTFS permissions on the old server was set up correctly. I fixed it on the brand new server. I just wanted to make sure the command I'm using will not overwrite the "correct" permissioning that was set on the new server.

Is this the right way of doing it?

robocopy "\\oldfileshare\user1" "\\newfileshare\user1" /E /V /ZB /R:0 /W:0 /TEE /COPY:DAT /LOG+:C:\.log
Avatar of Don S.
Don S.
Flag of United States of America image

That should work.  The operative part is the /copy option.  the default is Data Attributes Timestamp so what you have is superflous but it won't hurt.
Avatar of syseng007
syseng007

ASKER

@dons6718 - I did the copying over the weekend using the command line as stated above and the old file server OS 2003 size is 256GB and for some reason when i copied the same exact data over to the new file server OS 2008 R2, the files are 995GB! Any ideas? This is boggling.
2 possibilities jump to mind..

1. Different block size on the other server.  The "normal" block size for ntfs is 4k, and each file takes a minimum of 1 block.  If you have a large block size and a lot of small files, you could end up using a lot of space.

2. If you had a junction point/reparse point in the structure you were copying, you might have a sequence of files recopying multiple times.  If that is the case, you can use the 2008 side of robocopy and add in /xj (exclude junctions) to see if that helps.

Coralon
ASKER CERTIFIED SOLUTION
Avatar of rhinoceros
rhinoceros

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial