--- title: "Get-VBRComputerBackupJob" description: "Returns Veeam Agent backup jobs and Veeam Agent backup policies. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns an array of Veeam Agent backup job" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcomputerbackupjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Working with Veeam Agent Backup Jobs and Policies > Veeam Agent Management Backup Jobs > Get-VBRComputerBackupJob" dateModified: "2026-08-19" --- # Get-VBRComputerBackupJob ## Short Description Returns Veeam Agent backup jobs and Veeam Agent backup policies. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns an array of Veeam Agent backup jobs and Veeam Agent backup policies. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs for Veeam Agent backup jobs or a Veeam Agent backup policies.

Guid[]

False

Named

True (ByPropertyName)

Mode

Specifies the Veeam Agent backup job mode. You can specify either of the following backup job modes:

  • ManagedByAgent: use this option to get the backup policy.
  • ManagedByBackupServer: use this option to get a Veeam Agent backup job.

VBRComputerBackupJobMode

False

Named

False

Name

Specifies an array of names for Veeam Agent backup jobs or a Veeam Agent backup policies.

String[]

False

Named

True (ByPropertyName)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object This cmdlet returns the `VBRComputerBackupJob[]` object that contains settings of Veeam Agent backup jobs and Veeam Agent backup policies. ## Examples ::: example ### Example 1. Getting all Veeam Agent Backup Jobs This command returns an array of all Veeam Agent backup jobs and Veeam Agent backup policies that are added to Veeam Backup & Replication. ``` Get-VBRComputerBackupJob ``` ::: ::: example ### Example 2. Getting Veeam Agent Backup Job by Name This command returns the `Agent Job 05` Veeam Agent backup job. ``` Get-VBRComputerBackupJob -Name "Agent Job 05" ``` ::: ::: example ### Example 3. Getting Veeam Agent Backup Policy This command returns an array of Veeam Agent backup policies. ``` Get-VBRComputerBackupJob -Mode ManagedByAgent ``` :::