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

Get-VBRJobProxy

Short Description

Returns proxy servers assigned to a selected job.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Get-VBRJobProxy -Job <CBackupJob[]> [-Target] [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>]

Detailed Description

This cmdlet returns source or target proxy servers assigned to a selected job. You will see the notification if the automatic proxy selection is enabled.

Run Get-VBRViProxy or Get-VBRHvProxy to get a list of all VMware or Hyper-V proxies managed by Veeam Backup & Replication.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Job

Specifies the array of jobs. The cmdlet will return proxies assigned to these jobs.

True

Named

True (ByValue,
ByProperty
Name)

False

Target

Indicates that the cmdlet will return only target proxies.

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.

Example 1

This command looks for the list of target proxies assigned to the job named "Backup Job 01". The job object is obtained with Get-VBRJob and piped down.

Get-VBRJob -Name "Backup Job 01" | Get-VBRJobProxy -Target

Example 2

This command looks for the list of source proxies assigned to the job named "Backup Job 01". The job object is obtained with Get-VBRJob and piped down.

Get-VBRJob -Name "Backup Job 01" | Get-VBRJobProxy

Example 3

This command looks for the list of target proxies represented by the $Job1 variable. The job object is obtained with Get-VBRJob and assigned to the variable beforehand.

Get-VBRJobProxy -Job $Job1

Related Commands

Get-VBRJob