--- title: "Start-VBRDownloadTenantBackup" description: "Downloads tenant backups from capacity tier to performance tier. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet downloads tenant backups from capacity tier to performance tier." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/start-vbrdownloadtenantbackup.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup > Managing Backups > Start-VBRDownloadTenantBackup" dateModified: "2026-08-19" --- # Start-VBRDownloadTenantBackup ## Short Description Downloads tenant backups from capacity tier to performance tier. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Start-VBRDownloadTenantBackup -CloudTenant [-FullBackupChain] [] ``` ## Detailed Description This cmdlet downloads tenant backups from capacity tier to performance tier. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

CloudTenant

Specifies an array of cloud tenants. The cmdlet will download tenant backups from capacity tier to performance tier.

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

IVBRCloudTenant[]

True

Named

True (ByPropertyName, ByValue)

FullBackupChain

Defines that the cmdlet will download tenant backup files from both active and inactive backup chain.

If you do not specify this parameter, the cmdlet will download only tenant backups that belong to an active backup chain.

SwitchParameter

False

Named

False

`` 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). ## Examples ::: example ### Example 1. Downloading Tenant Backup Files This example shows how to download the `ABC Company` tenant backup files. ``` $tenant = Get-VBRCloudTenant -Name "ABC Company" Start-VBRDownloadTenantBackup -CloudTenant $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 `Start-VBRDownloadTenantBackup` cmdlet. Set the `$tenant` variable as the `CloudTenant` parameter value. ::: ::: example ### Example 2. Downloading all Tenant Backup Files This example shows how to download the `ABC Company` tenant backup files from both active and inactive backup chains. ``` $tenant = Get-VBRCloudTenant -Name "ABC Company" Start-VBRDownloadTenantBackup -CloudTenant $tenant -FullBackupChain ``` 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 `Start-VBRDownloadTenantBackup` cmdlet. Set the `$tenant` variable as the `CloudTenant` parameter value. Provide the `FullBackupChain` parameter. ::: ## Related Commands [`Get-VBRCloudTenant`](get-vbrcloudtenant.md)