Disable-VSBJob (obsolete)
Short Description
Puts a selected SureBackup job on hold.
Note |
|
This cmdlet is obsolete. Run the |
Platform: VMware, Hyper-V
Product Edition: Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Disable-VSBJob [-Job <CSbJob[]>] [<CommonParameters>] |
Detailed Description
This cmdlet puts a selected SureBackup job on hold. The job and its settings are not deleted from Veeam Backup & Replication. You can enable the job at any time by running the Enable-VSBJobEnables a disabled SureBackup job. This cmdlet is obsolete. Run the Enable-VBRSureBackupJob cmdlet instead. cmdlet.
Run the Stop-VSBJobStops running SureBackup job. This cmdlet is obsolete. Run the Stop-VBRSureBackupJob cmdlet instead. cmdlet to stop the job once without disabling it.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Job |
Specifies the SureBackup job you want to disable.
Accepts the |
|
False |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Example 1. Disabling SureBackup Job
This example shows how to put the Verification Job SureBackup job on hold.
|
$job = Get-VSBJob -Name "Verification Job" Disable-VSBJob -Job $job |
Perform the following steps:
- Run the
Get-VSBJobReturns SureBackup jobs. This cmdlet is obsolete. Run the Get-VBRSureBackupJob cmdlet instead. cmdlet. Specify theNameparameter value. Save the result to the$jobvariable. - Run the
Disable-VSBJobcmdlet. Set the$jobvariable as theJobparameter value.
Related Commands
Get-VSBJobReturns SureBackup jobs. This cmdlet is obsolete. Run the Get-VBRSureBackupJob cmdlet instead.