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

Get-VBREPJob

In this article

    Short Description

    Returns Endpoint backup jobs.

    Syntax

    Get-VBREPJob  [<CommonParameters>]

    -OR-

    Get-VBREPJob [-Name <string[]>]  [<CommonParameters>]

    -OR-

    Get-VBREPJob [-Id <guid[]>]  [<CommonParameters>]

    Related Commands

    None

    Return Type

    VBREPJob[]

    Detailed Description

    This cmdlet returns Veeam Endpoint backup jobs stored in Veeam Backup & Replication database.

    You can get the list of all Endpoint backup jobs or search for instances directly by name or ID. Use an appropriate parameter set for each case.

    Parameters

    Parameter

    Description

    Required

    Position

    Accept
    Pipeline
    Input

    Accept
    Wildcard
    Characters

    Name

    Specifies the name of the Endpoint backup job you want to get or search conditions.

    You can assign multiple names to this object.

    False

    Named

    False

    True

    Id

    Specifies the ID of the VBREPJob object you want to get.

    Accepts GUID or string type.

    You can assign multiple IDs to this object.

    False

    Named

    False

    False

    <CommonParameters>

    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 gets the list of all Endpoint backup jobs.

    PS C:\PS> Get-VBREPJob

    Example 2

    This command gets an Endpoint backup job named 'Backup Job Mediaserver'.

    PS C:\PS> Get-VBREPJob -Name 'Backup Job Mediaserver'