Find-VBRTapeCatalogVersion (obsolete)

Short Description

Looks for versions of files stored on tapes.

Note

This cmdlet is obsolete. The cmdlet still works but may not be supported in further versions.

Applies to

Platform: VMware, Hyper-V

Syntax

Find-VBRTapeCatalogVersion [-Name <String[]>] [-WarningAction <ActionPreference>] [-WarningVariable <String>]  [<CommonParameters>]

-OR-

Find-VBRTapeCatalogVersion [-CatalogFile <CatalogueFile>] [-Name <String[]>] [-WarningAction <ActionPreference>] [-WarningVariable <String>]  [<CommonParameters>]

Detailed Description

This cmdlet looks for versions of files stored on tapes that are managed by Veeam Backup & Replication.

File version is used as a file restore point.

You can get the list of all files and their versions that are stored on tapes or narrow down the output by file name or object of file you need.

Run the Find-VBRTapeCatalog cmdlet to get the list of files stored on tapes.

Parameters

Parameter

Description

Type

Required

Position

Accept
Pipeline
Input

Name

Specifies the name of the file you want to get versions for, or search conditions.

You can specify multiple names separated by commas.

String[]

False

Named

False

CatalogFile

Specifies the file you want to get versions for.

Accepts the CatalogueFile object. To get this object, run the Find-VBRTapeCatalog cmdlet.

False

Named

True (ByValue,
ByProperty
Name)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Examples

Find-VBRTapeCatalogVersion (obsolete)Example 1. Getting Most Recent Version of File

This example shows how to look for the most recent version of the Payroll_Marketing.html file.

Find-VBRTapeCatalog -Name "Payroll_Marketing.html" | Find-VBRTapeCatalogVersion | Select -First 1

Perform the following steps:

  1. Run the Find-VBRTapeCatalog cmdlet. Specify the Name parameter value.
  2. Pipe the cmdlet output to the Find-VBRTapeCatalogVersion cmdlet.
  3. Pipe the cmdlet output to the Select cmdlet. Specify the First parameter value.

Find-VBRTapeCatalogVersion (obsolete)Example 2. Getting Versions of Specific File

This example shows how to look for versions of the Payroll_Marketing.html file.

$file = Find-VBRTapeCatalog -Name "Payroll_Marketing.html"

$file | Find-VBRTapeCatalogueVersion

Perform the following steps:

  1. Run the Find-VBRTapeCatalog cmdlet. Specify the Name parameter value. Save the result to the $file variable.
  2. Pipe the cmdlet output to the Find-VBRTapeCatalogVersion cmdlet.

Related Commands

Find-VBRTapeCatalog