nerdexam
Microsoft

70-332 · Question #33

Drag and Drop Question You provision and configure a new SharePoint farm. The farm has not been backed up. You need to use Windows PowerShell to back up all service applications in the farm. How…

The cmdlet should be built as follows: Backup-SPFarm -Directory \\srv01\backup\ -BackupMethod Full -Item Farm\Shared Services Explanation: You can use Windows PowerShell to back up the farm manually or as part of a script that can be run at scheduled intervals. The…

Maintain a SharePoint environment

Question

Drag and Drop Question You provision and configure a new SharePoint farm. The farm has not been backed up. You need to use Windows PowerShell to back up all service applications in the farm. How should you build the cmdlet? (To answer, drag the appropriate element in the correct location or locations in the answer area. Each element may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

Explanation

The cmdlet should be built as follows: Backup-SPFarm -Directory \\srv01\backup\ -BackupMethod Full -Item Farm\Shared Services

Explanation:

  • You can use Windows PowerShell to back up the farm manually or as part of a script that can be run at scheduled intervals.
  • The Backup-SPFarm cmdlet creates a backup for the entire farm or individual components within the farm. It can also be used to back up just the configuration settings of a farm to be used as a farm template for other SharePoint farms. Syntax: Backup-SPFarm -BackupMethod <String> -Directory <String> [-AssignmentCollection <SPAssignmentCollection>] [-BackupThreads <Int32>] [-ConfigurationOnly <SwitchParameter>] [-Confirm [<SwitchParameter>]] [-Force <SwitchParameter>] [-Item <String>] [-Percentage <Int32>] [-WhatIf [<SwitchParameter>]]
  • Here we need a full backup, since the farm has not been backed up earlier.
  • Item parameter indicates the part of the farm to back up. Here we should use Farm\Shared Services

Topics

#Backup-SPFarm#service application backup#PowerShell backup#farm backup

Community Discussion

No community discussion yet for this question.

Full 70-332 Practice