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

Remove-VBRBackupSession (obsolete)

Short Description

Removes a specified backup session.

Note

This cmdlet is obsolete and not supported.

Applies to

Platform: VMware

Syntax

Remove-VBRBackupSession [-Session] <CBackupSession[]> [-WarningAction <ActionPreference>] [-WarningVariable <String>] [-WhatIf] [-Confirm] [<CommonParameters>]

Detailed Description

This cmdlet removes specified backup session from Veeam Backup & Replication.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Session

Specifies the backup session you want to remove.

You can assign multiple sessions to this object.

True

1

True (ByValue,
ByProperty
Name)

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 backup session named "Fileserver Backup". The backup session is obtained with Get-VBRBackupSession and piped down.

Get-VBRBackupSession -Name "Fileserver Backup" | Remove-VBRBackupSession

Example 2

This command removes the backup session named "Fileserver Backup". The backup session is obtained with Get-VBRBackupSession and assigned to the variable beforehand.

Remove-VBRBackupSession -Session $FileserverBackup

Related Commands

Get-VBRBackupSession