--- title: "Get-VBRSureBackupSession" description: "This cmdlet returns the list of all SureBackup sessions that have been run. Run the Get-VBRSureBackupTaskSession cmdlet to get the list of all tasks performed during the specific SureBackup session." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrsurebackupsession.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > SureBackup > SureBackup Jobs > Get-VBRSureBackupSession" dateModified: "2026-08-19" --- # Get-VBRSureBackupSession ## Short Description Returns SureBackup sessions that have been run. **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRSureBackupSession [-Name ] [-Id ] [] ``` ## Detailed Description This cmdlet returns the list of all SureBackup sessions that have been run. Run the [`Get-VBRSureBackupTaskSession`](get-vbrsurebackuptasksession.md) cmdlet to get the list of all tasks performed during the specific SureBackup session. Run the [`Get-VBRBackupSession`](get-vbrbackupsession.md) cmdlet to get list of backup sessions that have been run. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

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

Guid[]

False

Named

True (ByPropertyName, ByValue)

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 (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the `VBRSureBackupSession` object that contains settings of SureBackup sessions. ## Examples ::: example ### Example 1. Getting List of All SureBackup Sessions This command returns the list of all SureBackup sessions. ``` Get-VBRSureBackupSession ``` ::: ::: example ### Example 2. Getting SureBackup Session by Name This command returns the SureBackup sessions named `Winserver SureBackupJob`. ``` Get-VBRSureBackupSession -Name "Winserver SureBackupJob" ``` :::