--- title: "Add-VBRViJobObject" description: "Adds VMs to VMware jobs. Platform: VMware For Hyper-V, run the Add-VBRHvJobObjectAdds VMs to Hyper-V jobs. cmdlet. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet adds VMs to an existing job." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/add-vbrvijobobject.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Jobs > VMs in Job > Add-VBRViJobObject" dateModified: "2026-08-19" --- # Add-VBRViJobObject ## Short Description Adds VMs to VMware jobs. **Platform**: VMware For Hyper-V, run the [`Add-VBRHvJobObject`](add-vbrhvjobobject.md) cmdlet. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Add-VBRViJobObject -Job -Entities [-Force] [-Multitag] [] ``` ## Detailed Description This cmdlet adds VMs to an existing job. You can run this cmdlet with any kind of jobs. ::: note The cmdlet will not run if the geographic location of the VMs added to the job and the job target repository location do not match. If you still want to run the cmdlet, use the `Force` parameter. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Entities

Specifies the array of VMware VMs you want to add to the job.

Accepts the IViItem[] object. To create this object, run the Find-VBRViEntity cmdlet.

IViItem[]

True

Named

True (ByPropertyName, ByValue)

Force

Defines that the cmdlet will add VMs to the existing job even if the geographic location of these VMs and the target backup repository location do not match.

SwitchParameter

False

Named

False

Job

Specifies the job. The cmdlet will add VMs to this job.

Accepts the CBackupJob object. To create this object, run the Get-VBRJob cmdlet.

CBackupJob

True

Named

False

Multitag

Defines that the cmdlet will add tags to an existing 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). ## Examples ::: example ### Example 1. Adding VM to Job Represented by Variable [Using Pipeline] This example shows how to add a VM named `VM01` to the job represented by the `$job` variable. ``` $job = Get-VBRJob -Name "Backup Job" Find-VBRViEntity -Name VM01 | Add-VBRViJobObject -Job $job ``` Perform the following steps: 1. Run the [`Get-VBRJob`](get-vbrjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$job` variable. 2. Run the [`Find-VBRViEntity`](find-vbrvientity.md) cmdlet. Specify the `Name` parameter value. 3. Pipe the cmdlet output to the `Add-VBRViJobObject` cmdlet. Set the `$job` variable as the `Job` parameter value. ::: ::: example ### Example 2. Adding VM to Specific Job [Using Variables] This example shows how to add a VM represented by `$Vm` variable to the job represented by `$job` variable. ``` $job = Get-VBRJob -Name "Backup Job" $Vm = Find-VBRViEntity -Name "VM01" Add-VBRViJobObject -Job $job -Entities $Vm ``` Perform the following steps: 1. Run the [`Get-VBRJob`](get-vbrjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$job` variable. 2. Run the [`Find-VBRViEntity`](find-vbrvientity.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$Vm` variable. 3. Run the `Add-VBRViJobObject` cmdlet. Set the `$job` variable as the `Job` parameter value. Set `$Vm` variable as the `Entities` parameter value. ::: ## Related Commands - [`Get-VBRJob`](get-vbrjob.md) - [`Find-VBRViEntity`](find-vbrvientity.md)