up vote 1 down vote favorite
1
share [g+] share [fb]

I'm looking for example of scripts people are using to automate the backup of MOSS 2007 and WSS 3.0. Would be great to have built in support for various types and schedule of backup.

link|improve this question
feedback

3 Answers

up vote 2 down vote accepted

Here is a powershell solution - it is pretty flexible and can backup everything you need to restore your site, or just individual site collections.

link|improve this answer
feedback

We have a very small setup and run a full backup nightly.

One batch script that looks like this:

cd \
cd "Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN"
# you may hit some permissions problems here. our backup writes to the DB server, and is enacted by an account that has backup access to DB and write access to server
stsadm -o backup -directory \\servername\share\sharepoint_backup\ -backupmethod full

Then to clean up every N days the backups I use BackupCleanup.vbs. Check the comments at the top for testing.

Usage:

cscript.exe BackupCleanUp.vbs <Number of Days> \\servername\share\sharepoint_backup\spbrtoc.xml
link|improve this answer
feedback

SQL Server has some pretty good tools for that. And a content database backup is pretty useful for most disaster recovery models.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.