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
SBSWindows Server 2012Exchange

Avatar of undefined
Last Comment
KRS12

8/22/2022 - Mon
R--R

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

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..
Lee W, MVP

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.
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
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
Lee W, MVP

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
KRS12

ASKER
Company has their own reasons not too, I tried.  :)  thank you.
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
KRS12

ASKER
How do I copy a file that has has explicit permissions set and halts robocopy
ASKER CERTIFIED SOLUTION
Lee W, MVP

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
KRS12

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