Reset-VSBJobOptions (obsolete)
Short Description
Sets SureBackup job settings to default.
Note |
This cmdlet is obsolete. The cmdlet will still work but may not be supported in further versions. |
Applies to
Platform: VMware, Hyper-V
Product Edition: Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Reset-VSBJobOptions -Job <CSbJob> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>] |
Detailed Description
This cmdlet clears the custom settings of the specified SureBackup job and restores their default values.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
Job | Specifies the SureBackup job you want to edit. | True | Named | True (ByValue, | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Example 1
This command sets default settings to SureBackup jobs named "SureBackup Job 1" and "SureBackup Job 2". The jobs object is obtained with Get-VSBJob and piped down.
Get-VSBJob -Name "SureBackup Job 1", "SureBackup Job 2" | Reset-VSBJobOptions |
Example 2
This command sets default settings to the SureBackup job represented by the $SureJob variable. The job object is obtained with Get-VSBJob and assigned to the variable beforehand.
Reset-VSBJobOptions -Job $SureJob |
Related Commands