Link to home
Start Free TrialLog in
Avatar of KRS12
KRS12

asked on

Server 2011 SBS - Server 2012r2 Migration Robocopy Question

Server 2011 SBS - Server 2012r2 Migration Robocopy Question
I need to copy all the data from my old server to my new, with the exception of any Exchange 2010 data.
I am needing to copy all Shares, Folder Redirections etc.
I have never migrated a server that housed Exchange on the same box.  Will there be any issues
Avatar of R--R
R--R
Flag of India image

You can copy all the shares and folders as you wish. However Exchange database and logs will not get copied as it will be in use. To copy Exchange database you have to dismount the Exchange database and stop Exchange services.
I don't see nothing complicated here.  The complicated part would be the exchange migration, and I understand that this is not your goal.

For the rest of users files, robocopy is going to make the job.  Indeed both servers are part of the same domain, using robocopy properly will copy all file attributes as security, owner, etc.

As an example, I used this robocopy command 3 weeks ago to migrate some data;
robocopy \\OLD-PC\c$\Users\USER1.VECT\Desktop C:\Users\USER1.VECT\Desktop /E /PURGE /COPY:DATSOU /LOG+:C:\robocopy\desktop.log /NP /V /R:3 /W:5 /L

Open in new window


The final /L must be delete to run the command in a real mode ( /L just test the command without do anything).

..MFlores..
You ARE virtualizing right?

If so, just use Disk2VHD to capture the data drives and then mount it in the new VM.  MUCH MUCH faster than a robocopy and preserves all the permissions.  If there's anything you don't want when done, just delete from the VHD you create.
Avatar of KRS12
KRS12

ASKER

I am not virtualizing in this case.  

I was going to use this:  robocopy \\source server\Users\Shares D:/Shares /E /B /COPY:DATSOU /LOG:C:\Copyresults-shares.txt /tee
You should be.  You should always virtualize unless there's a compelling reason not to - read this article:
You're putting yourself and your company at a disadvantage by NOT virtualizing.  Not to mention WASTING an $800 Windows License granted to you *IF* you virtualize!

Please read this article for more information.
https://www.experts-exchange.com/articles/27799/Virtual-or-Physical.html
Avatar of KRS12

ASKER

Company has their own reasons not too, I tried.  :)  thank you.
Avatar of KRS12

ASKER

How do I copy a file that has has explicit permissions set and halts robocopy
ASKER CERTIFIED SOLUTION
Avatar of Lee W, MVP
Lee W, MVP
Flag of United States of America image

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
Avatar of KRS12

ASKER

Thank you Lee.  :) I will give it a try