Enable-VBRComputerBackupCopyJob
Short Description
Enables Veeam Agent backup copy jobs.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Enable-VBRComputerBackupCopyJob -Job <VBRComputerBackupCopyJob[]> [-PassThru] [<CommonParameters>] |
Detailed Description
This cmdlet enables Veeam Agent backup copy jobs.
Run the Disable-VBRComputerBackupCopyJob cmdlet to disable Veeam Agent backup copy jobs.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Job | Specifies an array of Veeam Agent backup copy jobs that you want to enable. | Accepts the VBRComputerBackupCopyJob[] object. To get this object, run the Get-VBRComputerBackupCopyJob cmdlet. | True | 0 | True (ByValue, ByPropertyName) |
PassThru | Defines that the command returns the output object to the Windows PowerShell console. | SwitchParameter | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
None.
Examples
Enabling Veeam Agent Backup Copy Jobs
This example shows how to enable Veeam Agent Backup copy jobs.
$jobs = Get-VBRComputerBackupCopyJob Enable-VBRComputerBackupCopyJob -Job $jobs |
Perform the following steps:
- Run the Get-VBRComputerBackupCopyJob cmdlet. Save the result to the $jobs variable.
- Run the Enable-VBRComputerBackupCopyJob cmdlet. Set the $jobs variable as the Job parameter value.
Related Commands