--- title: "Get-VSBJob (obsolete)" description: "Returns SureBackup jobs. This cmdlet is obsolete. Run the Get-VBRSureBackupJobReturns SureBackup jobs. cmdlet instead. Platform: VMware, Hyper-V Product Edition: Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns existing SureBa" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vsbjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Get-VSBJob (obsolete)" dateModified: "2026-08-19" --- # Get-VSBJob ## Short Description Returns SureBackup jobs. ::: note This cmdlet is obsolete. Run the [`Get-VBRSureBackupJob`](get-vbrsurebackupjob.md) cmdlet instead. ::: **Platform**: VMware, Hyper-V **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VSBJob [-Name ] [] ``` ## Detailed Description This cmdlet returns existing SureBackup jobs. You can get the list of all SureBackup jobs or look for specific jobs directly by name. Run the [`Get-VSBSession`](get-vsbsession.md) or [`Get-VSBTaskSession`](get-vsbtasksession.md) cmdlet to get the information on SureBackup session or session tasks. Run the [`Get-VBRJob`](get-vbrjob.md) cmdlet to look for backup, replication or copy jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies the array of SureBackup job names. The cmdlet will return jobs with these names.

String[]

False

Named

False

`` 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 All Created SureBackup Jobs This command looks for the list of all created SureBackup jobs. ``` Get-VSBJob ``` ::: ::: example ### Example 2. Getting All Specific SureBackup Jobs by Name This command looks for the `SureJob 01` and `SureJob 02` SureBackup jobs. ``` Get-VSBJob -Name "SureJob 01", "SureJob 02" ``` :::