Add-VBRJobObject (obsolete)
Short Description
Adds VMs to existing job.
|
In Backup & Replication v6 this cmdlet was replaced by Add-VBRViJobObject and Add-VBRHvJobObject due to multihypervisor support introduced in the new version. The cmdlet will still work but it is advised to rewrite your scripts using new cmdlets for added benefits. |
Applies to
Platform: VMware
Syntax
Add-VBRJobObject [-Job] <CBackupJob> [-Server] <CHost> [-Objects] <String[]> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>] -OR- Add-VBRJobObject [-Job] <CBackupJob> [-Server] <CHost> [-Entities] <CEntity[]> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>] |
Related Commands
Detailed Description
This cmdlet allows you to add VMs or VM containers to existing backup, replication or copy job.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
Job | Specifies the job you want to add VMs to. | True | 1 | False | False |
Server | Specifies the host where the VMs or VM containers you want to add reside. | True | 2 | False | False |
Objects | Specifies the string with the name(s) of VM(s) you want to add to the job. You can assign multiple VMs to this object. | True | 3 | True (ByValue, | False |
Entities | Specifies the VM(s) or VM container(s) you want to add to the job. You can assign multiple VMs to this object. | True | 3 | True (ByValue, | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Example 1
This command adds a VM named "vm3" to a job represented by $job variable. The VM is located on the server represented by the $server variable. The job object and the server object are obtained with Get-VBRJob and Get-VBRServer and assigned to the variables accordingly beforehand.
Add-VBRJobObject –Job $job –Server $server –Objects vm3 |
Example 2
This command adds a VM named "vm3" to the job represented by the $job variable. The VM is obtained with Find-VBRViEntity and piped down. The VM is located on the server represented by the $server variable. The job object and the server object are obtained with Get-VBRJob and Get-VBRServer and assigned to the variables accordingly beforehand.
Find-VBRViEntity -Name "vm3" | Add-VBRJobObject -Job $job -Server $server |