Jump to content

Recommended Posts

Posted

I need to move a ton of folders from one server to another server with as little after work as poss.

 

I have found these 2 commands but wanted you advice first.

 

Create empty shared folders on the new machine.



Turn off inheritance of permissions to contained folders and files.

 

Use ROBOCOPY with the option /COPY:DATSO to move all folders and files from

the old shares to the new shares, preserving:

Data content

File Attributes

Timestamps

NTFS ACLs

Ownership

 

easyest to use is robocopy:

robocopy /mir /sec "\\oldserver\d$" "\\newserver\d$"

 

This way security gets copied to

 

The first option looks like I would need to create all the shares first which I don't really want to do.

Posted

The switches are completely upto you

 

this site provides good detail Robocopy

 

As an example we use this one quite often

 

"Robocopy "\\sourceservername\sourcesharename" "\\destinationservername\destinationsharename" /E /Z /XD (any exluded folders) /SEC /XO /R:0 /W:0 /TEE /LOG+:"copy.log"

Posted
Just read the migration toolkit whitepaper. Looks very ott or is it just MS making things look more complicated than they are?

 

They have gone of the top with the whitepaper. Trust me its easy :)

Posted
Does the migration toolkit work on domain servers, something in the white paper mentions DFS root server cannot be a domain controller.

 

Yep it will work :)

Posted

Just tried to use Robocopy but got a 'the filename, directory name or syntax is incorrect using the following:

 

"Robocopy "\\server1\Multimedia$" "\\server2\Multimedia$" /E /Z /SEC /R:2 /W:30 /TEE /LOG+:"copy.log"

 

Cant be the file or folder name so must be a syntax issue.

 

I also assume it does not matter which server I am running this from as long as the first server/share is the source.

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...