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

Type

Required

Position

Accept
Pipeline
Input

Session

Specifies the backup session you want to remove.

You can assign multiple sessions to this object.

Accepts the CBackupSession[] object. To get this object, run the Get-VBRBackupSession cmdlet.

True

1

True (ByValue,
ByProperty
Name)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Examples

Remove-VBRBackupSession (obsolete)Example 1. Removing Selected Backup Session [Using Pipeline]

This example shows how to remove the Fileserver Backup backup session.

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

Perform the following steps:

  1. Run the Get-VBRBackupSession cmdlet. Specify the Name parameter value.
  2. Pipe the cmdlet output to the Remove-VBRBackupSession cmdlet.

Remove-VBRBackupSession (obsolete)Example 2. Removing Selected Backup Session [Using Variable]

This example shows how to remove the Fileserver Backup backup session.

$FileserverBackup = Get-VBRBackupSession -Name "Fileserver Backup"

Remove-VBRBackupSession -Session $FileserverBackup

Perform the following steps:

  1. Run the Get-VBRBackupSession cmdlet. Specify the Name parameter value.
  2. Run the Remove-VBRBackupSession cmdlet. Set the $FileserverBackup as the Session parameter value.

Related Commands

Get-VBRBackupSession