Disable-VBRApplicationBackupJob
Short Description
Disables application backup policies.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Disable-VBRApplicationBackupJob [-Job] <VBRApplicationBackupJobBase[]> [-PassThru] [<CommonParameters>] |
Detailed Description
This cmdlet disables application backup policies.
Run the Enable-VBRApplicationBackupJobEnables application backup policies. cmdlet to enable application backup policies.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Job |
Specifies an application backup policy that you want to disable.
Accepts the |
|
True |
0 |
True (ByPropertyName, ByValue) |
|
PassThru |
Defines that the command returns the output object to the Windows PowerShell console. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
This cmdlet returns the VBRApplicationBackupJobBase[] object that contains settings of disabled application backup policies.
Examples
Disabling Application Backup Policy
This example shows how to disable the DbsSrv2049 application backup policy.
|
$job = Get-VBRApplicationBackupJob -Name "DbsSrv2049" Disable-VBRApplicationBackupJob -Job $job |
Perform the following steps:
- Run the
Get-VBRApplicationBackupJobReturns application backup policies. cmdlet. Specify theNameparameter value. Save the result to the$jobvariable. - Run the
Disable-VBRApplicationBackupJobcmdlet. Set the$jobvariable as theJobparameter value.
Related Commands
Get-VBRApplicationBackupJobReturns application backup policies.