SharePoint 2010 out-of-the-box doesn’t have the capability of scheduling a backup. Fortunately, we have the mix of PowerShell script and Windows Task Scheduler to do the job. In reality it’s just a single line script:
Backup-SPFarm –Directory YourBackupDirectory –BackupMethod Full / Differential
So what’s so special about this specific script?
It sends you an email if an error occurred during the backup with the error description so that every morning (or whatever...(read more)
↧