This section provides useful help and tips over and above the formal support manual sections 2 through 18.
Description:
How to perform a Farm backup for SharePoint Server 2010 and 2013?
Steps:
To backup SharePoint Server, the following steps are required:
Assumption: The following assumption are made:

If not, the following error will be flagged when the PowerShell script is executed:
${ScriptName.ps1} cannot be loaded because the execution of scripts is disabled on this system
The reason for this error is the security setting on the server does not allow you to execute a script. By default, the Execution Policy is set to Restricted. This setting means that you may not run any PowerShell script.
Execute the following command within PowerShell to allow the script to run:
>Set-ExecutionPolicy RemoteSigned
This will allow scripts written on the local computer to be executed without a digital signature, but any script downloaded externally must have a signature to execute.
Alternatively, you can also sign the downloaded PowerShell script file: http://technet.microsoft.com/en-us/maga ... px?pr=blog
Important Note:
A farm backup starts a Microsoft SQL Server backup of content and service application databases, writes configuration content to files, and also backs up the Search index files and synchronizes them with the Search database backups.
Web servers setting in the SharePoint Server environment are not included in a farm backup, they include:
Please document the above settings for future reference and restoration purposes. To compliment the backup and effectively backup the SharePoint server, also use the MS Windows System module of OBM to backup your server.
Instruction:
Refer to the following steps to perform a Farm backup for your SharePoint server:
Prepare the pre-backup command:
| BackupSharePointFarm.ps1 |
| ... |
| $DIRECTORY = "\\servername\path" |
| Add-PsSnapin Microsoft.SharePoint.Powershell |
| Backup-SPFarm -Directory $DIRECTORY -Force -BackupMethod full |
| exit |
| ... |
Note:
Consider the following when setting up the backup destination path:
In this example, the MS SQL Server and SharePoint Server both reside on the same server, therefore, a local backup destination is specified.
| BackupSharePointFarm.ps1 (Updated) |
| ... |
| $DIRECTORY = "E:\FarmBackupDir" |
| Add-PsSnapin Microsoft.SharePoint.Powershell |
| Backup-SPFarm -Directory $DIRECTORY -Force -BackupMethod full |
| exit |
| ... |
Configure the pre-backup command on the OBM:

Working Directory: C:\
Command: spsFarmBackup.bat

The Sharepoint Server can now be backed up by pressing the [Backup] button on the OBM console.