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

Remove-VBRBackupSession (obsolete)

In this article

    Short Description

    Removes a specified backup session.

    Remove-VBRBackupSession (obsolete) Note:

    This cmdlet is obsolete and not supported in Veeam Backup & Replication v.8.0.

    Applies to

    Platform: VMware

    Syntax

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

    Related Commands

    Get-VBRBackupSession

    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 about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

    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 $"Fileserver Backup"