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

Find-VBRTapeCatalogVersion (obsolete)

In this article

    Short Description

    Looks for versions of files stored on tapes.

    Find-VBRTapeCatalogVersion (obsolete) Note:

    This cmdlet is obsolete. The cmdlet will still work in Veeam Backup & Replication v.8.0 but will 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>]

    Related Commands

    Find-VBRTapeCatalog

    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

    This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

    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