Get-VBRBackupSession

Short Description

Returns jobs sessions.

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

This cmdlet provides parameter sets that allow you to:

  • Get jobs sessions by session names.

Get-VBRBackupSession [-Name <String[]>] [<CommonParameters>]

  • Get jobs sessions by session IDs.

Get-VBRBackupSession [-Id <Guid[]>] [<CommonParameters>]

Detailed Description

This cmdlet returns jobs sessions.

You can get the sessions for the following jobs:

  • Backup jobs
  • Replication jobs
  • Backup copy jobs
  • NAS backup jobs
  • NAS backup copy jobs

Run Get-VSBTaskSession to get the SureBackup jobs sessions.

Run Get-VBRSession to get the tape jobs sessions.

Run Get-VBRTaskSession to get the tasks performed during specific sessions.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Name

Specify the array of backup session names, followed by the backup type (Incremental, Full, Synthetic Full). The cmdlet will return the sessions with these names and the specified backup type.

False

Named

False

True

Id

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

False

Named

False

True

<CommonParameters>

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

Return Type

None.

Example 1

This command returns the list of all backup sessions.

Get-VBRBackupSession

Example 2

This command returns all "Backup Copy" sessions with incremental backups.

Get-VBRBackupSession -Name "Backup Copy (Incremental)"

Example 3

This command returns the latest backup session for the backup job.

You will need to perform the following steps:

  1. Run Get-VBRJob to get the backup job and save the result to the $job variable.
  2. Run Get-VBRBackupSession with the $job variable. Use Where-Object method to get all backup sessions for the backup job. Use Sort-Object method to get the latest backup session.

$job = Get-VBRJob -Name "ABC Job"

Get-VBRBackupSession | Where {$_.jobId -eq $job.Id.Guid} | Sort EndTimeUTC -Descending | Select -First 1

Example 4

This command returns the latest stopped backup session.

Get-VBRBackupSession | Sort {$_.state -eq "Stopped"} -Descending | Select -First 1

Example 5

This command returns backup sessions that ended with the "Warning" status.

Get-VBRBackupSession | Where {$_.result -eq "Warning"}

Related Commands

Get-VBRJob