--- title: "Get-VBRDeletedDehydratedBackupFile" description: "Returns a list of backup files deleted from the capacity tier and preserved by insider protection. Platform: VMware, Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns a list of backup files de" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrdeleteddehydratedbackupfile.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup > Managing Backups > Get-VBRDeletedDehydratedBackupFile" dateModified: "2026-08-19" --- # Get-VBRDeletedDehydratedBackupFile ## Short Description Returns a list of backup files deleted from the capacity tier and preserved by insider protection. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRDeletedDehydratedBackupFile [-Name ] [] ``` ## Detailed Description This cmdlet returns a list of backup files deleted from the capacity tier and preserved by insider protection. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies backup files names. The cmdlet will return backup files with these names.

String

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). ## Output Object [`VBRDeletedDehydratedBackupFile`](vbrdeleteddehydratedbackupfile.md) ## Examples ::: example ### Getting Deleted Backup Files by Name This command returns backup files with `MonthlyReport` in name. ``` Get-VBRDeletedDehydratedBackupFile -Name "MonthlyReport" ``` :::