--- title: "Get-VBREPJob" description: "Returns backup jobs run by Veeam Agent operating in the standalone mode. This cmdlet provides the following parameter sets: This cmdlet returns backup jobs run by Veeam Agent operating in the standalone mode." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrepjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Veeam Agent Standalone Mode > Get-VBREPJob" dateModified: "2026-08-19" --- # Get-VBREPJob ## Short Description Returns backup jobs run by Veeam Agent operating in the standalone mode. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns backup jobs run by Veeam Agent operating in the standalone mode. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

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

Accepts Guid[] or String[].

Guid[]

False

Named

False

Name

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

String[]

False

Named

False

`` 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 [`VBREPJob`](vbrepjob.md)`[]` ## Examples ::: example ### Example 1. Getting All Backup Jobs by Veeam Agent in Standalone Mode This command returns all backup jobs run by Veeam Agent operating in the standalone mode. ``` Get-VBREPJob ``` ::: ::: example ### Example 2. Getting Specific Backup Job by Veeam Agent in Standalone Mode This command gets a backup job run by Veeam Agent operating in the standalone mode by a job name. ``` Get-VBREPJob -Name "Backup Job Mediaserver" ``` :::