Get-VBRSureBackupSession

Short Description

Returns SureBackup sessions that have been run.

Applies to

Platform: VMware, Hyper-V

Product Edition: Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Get-VBRSureBackupSession [-Name <string[]>] [-Id <guid[]>]  [<CommonParameters>]

Detailed Description

This cmdlet returns the list of all SureBackup sessions that have been run.

Run Get-VBRSureBackupTaskSession to get the list of all tasks performed during the specific SureBackup session.

Run Get-VBRBackupSession to get list of backup sessions that have been run.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies the array of SureBackup session names. The cmdlet will return sessions with these names.

The name of a SureBackup session is the name of the SureBackup job.

string[]

False

Named

True (ByValue,
ByProperty
Name)

ID

Specifies the array of SureBackup sessions IDs. The cmdlet will return sessions with these IDs.

guid[]

False

Named

True (ByValue,
ByProperty
Name)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Output Object

The cmdlet returns the VBRSureBackupSession object that contains settings of SureBackup sessions.

Examples

Get-VBRSureBackupSessionExample 1. Getting List of All SureBackup Sessions

This command returns the list of all SureBackup sessions.

Get-VBRSureBackupSession

Get-VBRSureBackupSessionExample 2. Getting SureBackup Session by Name

This command returns the SureBackup sessions named Winserver SureBackupJob.

Get-VBRSureBackupSession -Name "Winserver SureBackupJob"