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

Get-VBREPJob

Short Description

Returns backup jobs run by Veeam Agent operating in a standalone mode.

Syntax

This cmdlet provides parameter sets that allow you to:

  • Look for all backup jobs run by Veeam Agent:

Get-VBREPJob  [<CommonParameters>]

  • Look for backup jobs run by Veeam Agent by a job name:

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

  • Look for backup jobs run by Veeam Agent by a job ID:

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

Detailed Description

This cmdlet returns backup jobs run by Veeam Agent operating in a standalone mode.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Name

Specifies the array of  backup job names. The cmdlet will return jobs with these names.

False

Named

False

True

Id

Specifies the array of job IDs. The cmdlet will return the backup jobs with these IDs.

Accepts GUID or string type.

False

Named

False

False

<CommonParameters>

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

Return Type

VBREPJob[]

Example 1

This command returns all backup jobs run by Veeam Agent operating in a standalone mode.

Get-VBREPJob

Example 2

This command gets a backup job run by Veeam Agent operating in a standalone mode by the job name.

Get-VBREPJob -Name "Backup Job Mediaserver"