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
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
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;
The final /L must be delete to run the command in a real mode ( /L just test the command without do anything).
..MFlores..
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
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.
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.
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
I was going to use this: robocopy \\source server\Users\Shares D:/Shares /E /B /COPY:DATSOU /LOG:C:\Copyresults-shares
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
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
ASKER
Company has their own reasons not too, I tried. :) thank you.
ASKER
How do I copy a file that has has explicit permissions set and halts robocopy
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thank you Lee. :) I will give it a try