Disable-VBRComputerBackupCopyJob
Short Description
Disables Veeam Agent backup copy jobs.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Disable-VBRComputerBackupCopyJob -Job <VBRComputerBackupCopyJob[]> [-PassThru] [<CommonParameters>] |
Detailed Description
This cmdlet disables Veeam Agent backup copy jobs.
Run the Enable-VBRComputerBackupCopyJob cmdlet to enable 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 disable. | 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
Disabling Veeam Agent Backup Copy Jobs
This example shows how to disable Veeam Agent Backup copy jobs.
$jobs = Get-VBRComputerBackupCopyJob Disable-VBRComputerBackupCopyJob -Job $jobs |
Perform the following steps:
- Run the Get-VBRComputerBackupCopyJob cmdlet. Save the result to the $jobs variable.
- Run the Disable-VBRComputerBackupCopyJob cmdlet. Set the $jobs variable as the Job parameter value.
Related Commands