Disable-VSBJobSchedule (obsolete)
Short Description
Disables a selected SureBackup job schedule.
Note |
|
This cmdlet is obsolete. The cmdlet will still work but may not be supported in further versions. |
Platform: VMware, Hyper-V
Product Edition: Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Disable-VSBJobSchedule [-Job <CSbJob[]>] [<CommonParameters>] |
Detailed Description
This cmdlet disables a selected SureBackup job schedule. The schedule settings are not deleted. When you disable a job schedule, you can launch the job manually by running the Start-VSBJobStarts a created SureBackup job. This cmdlet is obsolete. Run the Start-VBRSureBackupJob cmdlet instead. cmdlet.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Job |
Specifies the array of SureBackup jobs. The cmdlet will disable schedule of these jobs.
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 Schedule
This example shows how to disable the schedule of the Verification Job SureBackup job.
|
$job = Get-VSBJob -Name "Verification Job" Disable-VSBJobSchedule -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-VSBJobSchedulecmdlet. Set the$jobvariable as theJobparameter value.
Related Commands
Get-VSBJobReturns SureBackup jobs. This cmdlet is obsolete. Run the Get-VBRSureBackupJob cmdlet instead.