Start-VBRTapeVerification
Short Description
Starts tape verification jobs.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Start-VBRTapeVerification -Medium <VBRTapeMedium[]> [<CommonParameters>] |
Detailed Description
This cmdlet starts tape verification jobs.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Medium |
Specifies an array of tapes. The cmdlet will add this array of tapes to the tape verification job.
Accepts the |
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRBackupSession object that defines the started tape verification jobs with the following details: Progress, RunManually flag, Log path, CreationTime, EndTime, JobId, Result, State, and the tape session Id.
Examples
Starting Tape Verification Job
This example shows how to start a tape verification job that will check data that is stored on the 0021000C tape.
|
$tape = Get-VBRTapeMedium -Name "0021000C" Start-VBRTapeVerification -Medium $tape |
Perform the following steps:
- Run the
Get-VBRTapeMediumReturns tapes. cmdlet. Specify theNameparameter value. Save the result to the$tapevariable. - Run the
Start-VBRTapeVerificationcmdlet. Set the$tapevariable as theMediumparameter value.
Related Commands
Get-VBRTapeMediumReturns tapes.