--- title: "Start-VBRApplicationBackupJob" description: "This cmdlet starts application backup policies." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/start-vbrapplicationbackupjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Plug-Ins for Enterprise Applications, MongoDB Backup and Epic EHR System Protection > Working with Managed Veeam Plug-Ins, MongoDB Backup and Epic EHR System Protection > Application Backup Policies > Start-VBRApplicationBackupJob" dateModified: "2026-08-19" --- # Start-VBRApplicationBackupJob ## Short Description Starts application backup policies. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Start-VBRApplicationBackupJob [-Job] [-RunAsync] [-FullBackup] [-RetryBackup] [-StartChainedJobs] [] ``` ## Detailed Description This cmdlet starts application backup policies. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

FullBackup

Defines that the application backup policy will create an active full backup.

SwitchParameter

False

Named

False

Job

Specifies an application backup policy that you want to start.

Accepts the VBRApplicationBackupJobBase[] object. To get this object, run the Get-VBRApplicationBackupJob cmdlet.

VBRApplicationBackupJobBase[]

True

0

True (ByPropertyName, ByValue)

RetryBackup

Defines that Veeam Backup & Replication will restart the failed job. The cmdlet will start the job from the moment when it has failed.

SwitchParameter

False

Named

False

RunAsync

Defines that the command returns immediately without waiting for the task to complete.

SwitchParameter

False

Named

False

StartChainedJobs

Defines that Veeam Backup & Replication will start jobs that are scheduled to run after this job.

SwitchParameter

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 This cmdlet returns the `VBRSession[]` object that contains settings of running application backup policies. ## Examples ::: example ### Example 1. Starting Application Backup Policy This example shows how to start the application backup policy. ``` $job = Get-VBRApplicationBackupJob -Name "DbsSrv2049" Start-VBRApplicationBackupJob -Job $job ``` Perform the following steps: 1. Run the [`Get-VBRApplicationBackupJob`](get-vbrapplicationbackupjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$job` variable. 2. Run the `Start-VBRApplicationBackupJob` cmdlet. Set the `$job` variable as the `Job` parameter value. ::: ::: example ### Example 2. Creating Full Backup by Application Backup Policy This example shows how to create an active full backup by the application backup policy. ``` $job = Get-VBRApplicationBackupJob -Name "DbsSrv2049" Start-VBRApplicationBackupJob -Job $job -FullBackup ``` Perform the following steps: 1. Run the [`Get-VBRApplicationBackupJob`](get-vbrapplicationbackupjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$job` variable. 2. Run the `Start-VBRComputerBackupJob` cmdlet. Set the `$job` variable as the `Job` parameter value. Specify the `FullBackup` parameter. ::: ## Related Commands [`Get-VBRApplicationBackupJob`](get-vbrapplicationbackupjob.md)