Jump to content

Recommended Posts

Posted
Anyone got any RoboCopy GUI example scripts they have used to migrate users data over to a SAN or other source ? If so - care to share ?
Posted (edited)

GUI is for WIMPS ;-)

robocopy is dead easy to use from the command line

Right, depends on your SAN/NAS, if you want to do a live migration, do

robocopy source destination /MIR

and just leave it running

This will mirror the share you are moving, once it's synched you can point your users to the new location and when happy everyone is across stop robocopy.

If you don't want to do it live, do:

robocopy source destination /E /ZB /COPYALL /DCOPY:T

 

some NAS/SAN don't like the NTFS ACL being copied across, in that case:

robocopy source destination /E /ZB /COPY:DATO /DCOPY:T

 

If someone updates a file, on the two above, just run it again and it will copy across any updated or new files.

Edited by teejay
  • Thanks 1
Posted
I take it the top one [ with the /MIR switche ] copies the NTFS ACL ? I'll give it a go when I have setup the SAN.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...