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.
Asked
Active
Viewed 700 times
3 Answers
2
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

andyhky
- 2,732
- 2
- 25
- 26
0
SQL Server has some pretty good tools for that. And a content database backup is pretty useful for most disaster recovery models.

Nat
- 345
- 1
- 9