--- title: "Get-VBRCloudTenantBackup" description: "Returns backups of AD tenants and tenants managed by the Service Provider. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: Returns backups of AD tenants and tenants ma" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcloudtenantbackup.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup > Managing Backups > Get-VBRCloudTenantBackup" dateModified: "2026-08-19" --- # Get-VBRCloudTenantBackup ## Short Description Returns backups of AD tenants and tenants managed by the Service Provider. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description Returns backups of AD tenants and tenants managed by the Service Provider. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

All

Defines that the cmdlet will return all types of backups: encrypted, non-encrypted, managed and not managed by the Service Provider.

SwitchParameter

False

Named

False

Id

Specifies an array of the backup IDs. The cmdlet will return backups with these IDs.

Guid[]

False

Named

True (ByPropertyName, ByValue)

Name

Specifies the array of the job names. The cmdlet will return backups produced with these jobs.

String[]

False

Named

True (ByPropertyName, ByValue)

Tenant

Specifies an array of tenant accounts for which you want to get backup files.

Accepts the IVBRCloudTenant[] object. To create this object, run the Get-VBRCloudTenant cmdlet.

IVBRCloudTenant[]

False

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object [`VBRCloudTenantBackup`](vbrcloudtenantbackup.md) ## Examples ::: example ### Example 1. Getting Non-Encrypted Backups for AD Tenant Accounts This example shows how to get a list of non-encrypted backups of the `ABC Company` tenant. ``` $tenant = Get-VBRCloudTenant -Name "ABC Company" $backupfiles = Get-VBRCloudTenantBackup -Tenant $tenant ``` Perform the following steps: 1. Run the [`Get-VBRCloudTenant`](get-vbrcloudtenant.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$tenant` variable. 2. Run the `Get-VBRCloudTenantBackup` cmdlet. Set the `$tenant` variable as the `Tenant` parameter value. Save the result to the `$backupfiles` variable. ::: ::: example ### Example 2. Getting All Backups for Tenant Account This example shows how to get a list of all encrypted and non-encrypted backups of the `ABC Company` tenant. ``` $tenant = Get-VBRCloudTenant -Name "ABC Company" $allbackups = Get-VBRCloudTenantBackup -All -Tenant $tenant ``` Perform the following steps: 1. Run the [`Get-VBRCloudTenant`](get-vbrcloudtenant.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$tenant` variable. 2. Run the `Get-VBRCloudTenantBackup` cmdlet. Provide the `All` parameter. Set the `$tenant` variable as the `Tenant` parameter value. Save the result to the `$allbackups` variable. ::: ## Related Commands [`Get-VBRCloudTenant`](get-vbrcloudtenant.md)