This is an archive version of the document. To get the most up-to-date information, see the current version.

Remove-VBRJob

Short Description

Removes a selected backup, replication or backup copy job.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Remove-VBRJob [-Job] <CBackupJob[]> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [-WhatIf] [-Confirm] [<CommonParameters>]

Detailed Description

This cmdlet removes a selected backup, replication or backup copy job from Veeam Backup & Replication console and database.

Run Remove-VSBJob to remove SureBackup jobs.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Job

Specifies the array of jobs you want to remove.

True

1

True (ByValue,
ByProperty
Name)

False

WhatIf

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

False

Named

False

False

Confirm

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

False

Named

False

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 removes the file copy jobs. The jobs to remove are obtained with Get-VBRJob and piped down.

Get-VBRJob -Name "File Copy*" | Remove-VBRJob

Example 2

This command removes the job represented by the $job variable. The job is obtained with Get-VBRJob and assigned to the variable beforehand.

Remove-VBRJob -Job $job

Related Commands

Get-VBRJob