This is an archive version of the document. To get the most up-to-date information, see the current version.

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 Find-VBRTapeCatalog to get the list of files stored on tapes.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Name

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

You can specify multiple names separated by commas.

False

Named

False

True

CatalogFile

Specifies the file you want to get versions for.

False

Named

True (ByValue,
ByProperty
Name)

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Example 1

This command looks for the most recent version of file named "Payroll_Marketing.html". The file object is obtained with Find-VBRTapeCatalog and piped down. The needed version is filtered with Select method.

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

Example 2

This command looks for versions of file represented by $file variable. The file object is obtained with Find-VBRTapeCatalog, assigned to the variable and piped down.

$file | Find-VBRTapeCatalogueVersion

Related Commands

Find-VBRTapeCatalog