--- title: "Get-VSBJobOptions (obsolete)" description: "This cmdlet returns job settings for the specified SureBackup job." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vsbjoboptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Get-VSBJobOptions (obsolete)" dateModified: "2026-08-19" --- # Get-VSBJobOptions ## Short Description Returns settings of a selected SureBackup job. ::: 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 ``` Get-VSBJobOptions [[-Job] ] [] ``` ## Detailed Description This cmdlet returns job settings for the specified SureBackup job. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies the SureBackup job you want to get the settings of.

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

CSbJob

False

0

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. Getting Settings for Selected SureBackup Job [Using Pipeline] This example shows how to look for the list of job settings for the `SureJob 02` SureBackup job. ``` Get-VSBJob -Name "SureJob 02" | Get-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 `Get-VSBJobOptions` cmdlet. ::: ::: example ### Example 2. Getting Settings for Selected SureBackup Job [Using Variable] This example shows how to look for the list of job settings for the `SureJob 02` SureBackup job. ``` $SureJob = Get-VSBJob -Name "SureJob 02" Get-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 `Get-VSBJobOptions` cmdlet. Set the `$SureJob` variable as the `Job` parameter value. ::: ## Related Commands [`Get-VSBJob`](get-vsbjob.md)