--- title: "Reset-VSBJobOptions (obsolete)" description: "This cmdlet clears the custom settings of the specified SureBackup job and restores their default values." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/reset-vsbjoboptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Reset-VSBJobOptions (obsolete)" dateModified: "2026-08-19" --- # Reset-VSBJobOptions ## 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. ::: **Platform**: VMware, Hyper-V **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Reset-VSBJobOptions [-Job ] [] ``` ## Detailed Description This cmdlet clears the custom settings of the specified SureBackup job and restores their default values. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies the SureBackup job you want to edit.

Accepts the CSbJob object. To get this object, run the Get-VSBJob cmdlet.

CSbJob

False

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Example 1. Setting Default Settings to Selected SureBackup Jobs [Using Pipeline] This example shows how to reset `SureBackup Job 1` and `SureBackup Job 2` SureBackup jobs to default settings. ``` Get-VSBJob -Name "SureBackup Job 1", "SureBackup Job 2" | Reset-VSBJobOptions ``` Perform the following steps: 1. Run the [`Get-VSBJob`](get-vsbjob.md) cmdlet. Specify the `Name` parameter value. 2. Pipe the cmdlet output to the `Reset-VSBJobOptions` cmdlet. ::: ::: example ### Example 2. Setting Default Settings to Selected SureBackup Jobs [Using Variable] This example shows how to reset `SureBackup Job 1` and `SureBackup Job 2` SureBackup jobs to default settings. ``` $SureJob = Get-VSBJob -Name "SureBackup Job 1", "SureBackup Job 2" Reset-VSBJobOptions -Job $SureJob ``` Perform the following steps: 1. Run the [`Get-VSBJob`](get-vsbjob.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$SureJob` variable. 2. Run the `Reset-VSBJobOptions` cmdlet. Set the `$SureJob` as the `Job` parameter value. ::: ## Related Commands [`Get-VSBJob`](get-vsbjob.md)