--- title: "Remove-VSBJob (obsolete)" description: "This cmdlet removes a specified SureBackup job from Veeam Backup & Replication." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vsbjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Remove-VSBJob (obsolete)" dateModified: "2026-08-19" --- # Remove-VSBJob ## Short Description Removes a specified SureBackup job. ::: note This cmdlet is obsolete. Run the [`Remove-VBRSureBackupJob`](remove-vbrsurebackupjob.md) cmdlet instead. ::: **Platform**: VMware, Hyper-V **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VSBJob [[-Job] ] [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet removes a specified SureBackup job from Veeam Backup & Replication. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Job

Specifies the array of SureBackup jobs. The cmdlet will remove these jobs.

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

CSbJob[]

False

0

True (ByPropertyName, ByValue)

Confirm

Defines whether the cmdlet displays a prompt that asks if the user is sure that they want to continue.

SwitchParameter

False

Named

False

WhatIf

Defines whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action.

SwitchParameter

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. Removing Selected SureBackup Jobs [Using Pipeline] This example shows how to remove the `SureJob 01` and `SureJob 12` SureBackup jobs. ``` Get-VSBJob -Name "SureJob 01", "SureJob 12"| Remove-VSBJob ``` 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 `Remove-VSBJob` cmdlet. ::: ::: example ### Example 2. Removing Selected SureBackup Jobs [Using Variable] This example shows how to remove the `Fileserver Backup` backup session. ``` $surejob = Get-VSBJob -Name "SureJob 01", "SureJob 12" Remove-VSBJob -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 `Remove-VSBJob` cmdlet. Set the `$surejob` as the `Job` parameter value. ::: ## Related Commands [`Get-VSBJob`](get-vsbjob.md)