Get-VESPSite
Short Description
Returns SharePoint sites.
Applies to
Veeam Backup & Replication, Veeam Backup for Microsoft 365
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
This cmdlet provides parameter sets that allow you to:
- [For Veeam Backup & Replication] Get SharePoint sites from a backed-up SharePoint database.
 
Get-VESPSite [-Database] <VESPDatabase> [[-Name] <String[]>] [-Recurse] [<CommonParameters>]  | 
- [For Veeam Backup for Microsoft 365] Get SharePoint sites from a SharePoint organization.
 
Get-VESPSite [-Organization] <VESPOrganization> [[-Name] <String[]>] [-Recurse] [<CommonParameters>]  | 
- Get a SharePoint site from a parent site.
 
Get-VESPSite [-ParentSite] <VESPSite> [[-Name] <String[]>] [-Recurse] [<CommonParameters>]  | 
Detailed Description
This cmdlet returns SharePoint sites. You can get either parent items or child items of a SharePoint site.
Parameters
Parameter  | Description  | Type  | Required  | Position  | Accept Pipeline Input  | 
|---|---|---|---|---|---|
Database  | Specifies a backed-up SharePoint database. The cmdlet will get SharePoint sites from the specified database. Note: This parameter is available for backups of SharePoint created by Veeam Backup & Replication only.  | Accepts the VESPDatabase object. To get this object, run the Get-VESPDatabase cmdlet.  | True  | 0  | True (ByValue)  | 
Name  | Specifies an array of SharePoint site names. This cmdlet will return SharePoint sites with the specified names. This parameter accepts wildcard characters.  | String[]  | False  | 1  | False  | 
Recurse  | Defines that the cmdlet will return all child items of the specified parent item. Default: False  | SwitchParameter  | False  | Named  | False  | 
Organization  | Specifies a SharePoint organization. The cmdlet will return SharePoint items from this organization. Note: This parameter is available for backups of SharePoint created by Veeam Backup for Microsoft 365 only.  | Accepts the VESPOrganization object. To get this object, run the Get-VESPOrganization cmdlet.  | True  | 0  | True (ByValue)  | 
ParentSite  | Specifies a name of a SharePoint parent site. The cmdlet will return only one sub-level child sites for this site.  | Accepts the VESPSite object. To get this object, run the Get-VESPSite cmdlet.  | True  | 0  | True (ByValue)  | 
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Output Object
The cmdlet returns the VESPSite[] array that contains SharePoint sites.
Examples
Example 1. Getting SharePoint Sites from SharePoint Database [For Veeam Backup & Replication]
This example shows how to get all SharePoint sites from the WSS_Content.mdf SharePoint database. 
 Perform the following steps: 
  | 
Example 2. Getting SharePoint Child Sites from SharePoint Parent Site [For Veeam Backup & Replication]
This example shows how to get all child sites from the Teams parent site. 
 Perform the following steps: 
 
 
  | 
Example 3. Getting SharePoint Site from Microsoft Organization [For Veeam Backup for Microsoft 365]
This example shows how to get the Team Site SharePoint site from the ABC SharePoint organization. 
 Perform the following steps: 
  | 
Example 4. Getting SharePoint Child Sites from SharePoint Parent Site [For Veeam Backup for Microsoft 365]
This example shows how to get all child sites from the Team Site parent site. 
 Perform the following steps: 
 
 
  | 
Related Commands