Get-VBRTapeRestoreAllContentDependentMedium
Short Description
Returns dependent tapes.
Product Edition: Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Get-VBRTapeRestoreAllContentDependentMedium -Medium <VBRTapeMedium[]> [<CommonParameters>] |
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-VBRTapeCopyStarts tape copy jobs. 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 |
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRTapeCopyDependentMedium object that defines dependent tapes that store dependent parts of the backup files.
Examples
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:
- Run the
Get-VBRTapeMediumReturns tapes. cmdlet. Specify theNameparameter value. Save the result to the$tapevariable. - Run the
Get-VBRTapeRestoreAllContentDependentMediumcmdlet. Set the$tapevariable as theMediumparameter value.
Related Commands
Get-VBRTapeMediumReturns tapes.