Get-VESPDatabase
Short Description
Returns backed-up Microsoft SharePoint databases.
Applies to: Veeam Backup & Replication
Product Edition: Community, Standard, Enterprise, Enterprise Plus
Syntax
Get-VESPDatabase [-Session] <VBRSharePointRestoreSession> [[-Name] <string[]>] [<CommonParameters>] |
Detailed Description
This cmdlet returns an array of backed up Microsoft SharePoint databases.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Session | Specifies a restore session started to perform operations with Microsoft SharePoint databases The cmdlet will return an array of Microsoft SharePoint databases that are available for restore within this session. Accepts the VBRSharePointRestoreSession object. To get this object, run the Get-VBRSharePointItemRestoreSession cmdlet. | True | 0 | True (ByValue) | False |
Name | Specifies an array of names for Microsoft SharePoint.databases. | False | 1 | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Return Type
VESPDatabase[]
Example 1
This example shows how to get a list of Microsoft SharePoint databases.
- Run the Get-VBRSharePointItemRestoreSession cmdlet to get the restore session. Save the result to the $session variable.
- Run the Get-VESPDatabase cmdlet with the $session variable.
$session = Get-VBRSharePointItemRestoreSession Get-VESPDatabase -Session $session |
Example 2
This example shows how to get the DocArchive06_AuditorDB.mdf Microsoft SharePoint database.
- Run the Get-VBRSharePointItemRestoreSession cmdlet to get the restore session. Save the result to the $session variable.
- Run the Get-VESPDatabase cmdlet with the $session variable. Use the Name parameter to specify the name of the database that you want to get.
$session = Get-VBRSharePointItemRestoreSession Get-VESPDatabase -Session $session -Name "DocArchive06_AuditorDB.mdf" |
Related Commands