Avatar of VoodooFrog
VoodooFrog
Flag for United States of America asked on

SBS 2011 (Server 2008 R2): Backup Best Practices

Currently I am using Windows Server Backup to backup incrementally to an internal drive.

In addition to this I would like to back up incrementally to a network share.

The first issue I have is that it would appear I can only have one scheduled backup.

Let me know what you guys would suggest to accomplish my desired goal.

Thanks!
Windows Server 2008SBS

Avatar of undefined
Last Comment
VoodooFrog

8/22/2022 - Mon
nsgjohn

You can only have a single Incremental job per drive.  Even with other 3rd party products.  This is a technical issue which has to do with the fact that you cannot store multiple "stop" points on the drive to tell it which incremental it is doing.

To get around this, we use a program call StorageCraft.  We backup to a large drive that is either on the network or connected via USB which has incrementals.  Then we do a nightly full backup to a drive which gets carried offsite.

To accomplish the same thing with the Windows backup I believe you will need to add a drive letter to your backup drive and then use a program like Robocopy.  Or you could use one that Phillip Misner turned me to called Beyond Compare by Scooter Software.

I really prefer the StorageCraft route because it seems to be a more portable image (easy to restore both bare-metal and single files).
VoodooFrog

ASKER
I have set up a peer-to-peer network using the secondary NIC's.  I have added a hot-swapable raid box to another computer added to the peer-to-peer network.  My plan is to direct backups to the raid box which will be in a raid 1 configuration.  Then I will rotate the second drive in the raid box daily so that we will always have an offsite backup that is no more than one day old.

Do you see anything wrong with that?
VoodooFrog

ASKER
Also, I was just going about switching to the shared folder and got the message in the screenshot below.  How can I backup to a share incrementally? Warning Message
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
nsgjohn

That is a limitation of the built in SBS backup in 2008.  I'm not sure of a way around it.  You might be able to run the native Server 2008 backup and configure more options, but it will break the SBS backup status and information through the console.
VoodooFrog

ASKER
Alright, how would I schedule a nightly full backup to a network share that would not interfere with the local incremental schedule?
ASKER CERTIFIED SOLUTION
nsgjohn

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

ASKER
I couldn't execute it through a script run by Task Scheduler?
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
VoodooFrog

ASKER
I added the code below to a scheduled task that runs once a day to copy the latest state to a share.

Thank you for your help.

 
wbadmin start backup -backupTarget:\\Server\Share -allCritical -systemState -vssCopy -quiet

Open in new window