--- title: "Get-VBRTapeRestoreAllContentDependentMedium" description: "Returns dependent tapes. Product Edition: Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns dependent tapes that store other parts of the backup." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrtaperestoreallcontentdependentmedium.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Tape Devices > Tape Jobs > Get-VBRTapeRestoreAllContentDependentMedium" dateModified: "2026-08-19" --- # Get-VBRTapeRestoreAllContentDependentMedium ## Short Description Returns dependent tapes. **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRTapeRestoreAllContentDependentMedium -Medium [] ``` ## Detailed Description This cmdlet returns dependent tapes that store other parts of the backup. You may want to run this cmdlet before you start the [`Start-VBRTapeCopy`](start-vbrtapecopy.md) cmdlet, to get information on the dependent tapes. When a backup file does not fit on one tape, it is divided into parts and written to several tapes. These tapes are considered dependent. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Medium

Specifies an array of tapes. The cmdlet will return dependent tapes for the tapes from this array.

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

VBRTapeMedium[]

True

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 The cmdlet returns the `VBRTapeCopyDependentMedium` object that defines dependent tapes that store dependent parts of the backup files. ## Examples ::: example ### Getting Dependent Tapes for Specified Tape This example shows how to get tapes that are dependent on the `0021000C` tape. ``` $tape = Get-VBRTapeMedium -Name "0021000C" Get-VBRTapeRestoreAllContentDependentMedium -Medium $tape ``` Perform the following steps: 1. Run the [`Get-VBRTapeMedium`](get-vbrtapemedium.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$tape` variable. 2. Run the `Get-VBRTapeRestoreAllContentDependentMedium` cmdlet. Set the `$tape` variable as the `Medium` parameter value. ::: ## Related Commands [`Get-VBRTapeMedium`](get-vbrtapemedium.md)