--- title: "Get-VBRCloudUnavailableBackupFile" description: "Returns a list of backup files that are no longer available in the cloud repository. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns a list of backup files that are no longer available in the cloud " canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcloudunavailablebackupfile.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup > Managing Backups > Get-VBRCloudUnavailableBackupFile" dateModified: "2026-08-19" --- # Get-VBRCloudUnavailableBackupFile ## Short Description Returns a list of backup files that are no longer available in the cloud repository. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRCloudUnavailableBackupFile -CloudTenant [] ``` ## Detailed Description This cmdlet returns a list of backup files that are no longer available in the cloud repository. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

CloudTenant

Specifies a cloud tenant account for which you want to get backup files that are no longer available in the cloud repository.

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

IVBRCloudTenant

True

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 [`VBRCloudUnavailableBackupFile`](vbrcloudunavailablebackupfile.md) ## Examples ::: example ### Getting Unavailable Backup Files for Cloud Tenant Account This example shows how to get a list of backup files that are no longer available in the cloud repository for the `ABC Company` cloud tenant account. ``` $tenant = Get-VBRCloudTenant -Name "ABC Company" $backupfiles = Get-VBRCloudUnavailableBackupFile -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 `Get-VBRCloudUnavailableBackupFile` cmdlet. Set the `$tenant` variable as the `CloudTenant` parameter value. Save the result to the `$backupfiles` variable. ::: ## Related Commands [`Get-VBRCloudTenant`](get-vbrcloudtenant.md)