--- title: "Get-VBRCopyBackupSession" description: "Returns copy sessions. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns copy sessions." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcopybackupsession.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Jobs > Sessions > Get-VBRCopyBackupSession" dateModified: "2026-08-19" --- # Get-VBRCopyBackupSession ## Short Description Returns copy sessions. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns copy sessions. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Backup

Specifies the backup for which you want to get copy sessions.

Accepts the VBRBackup object. To get this object, run the Get-VBRBackup cmdlet.

VBRBackup

True

Named

False

Id

Specifies the ID of the session. The cmdlet will return the session with this ID.

Guid

True

Named

False

MachineName

Specifies the name of the machine for which you want to return the copy sessions.

String

True

Named

False

Confirm

Defines that the cmdlet will display a prompt that asks if you want to continue running the command.

SwitchParameter

False

Named

False

WhatIf

Defines that the cmdlet will write a message that describes the effects of running the cmdlet without actually performing any action.

SwitchParameter

False

Named

False

`` 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 `VBRCopyBackupSession[]` object that contains settings of the copy session. ## Examples ::: example ### Getting Copy Sessions for Specific Backup This command returns copy sessions for the `Exchange Backup_imported` backup. ``` $backup = Get-VBRBackup -Name "Exchange Backup_imported" Get-VBRCopyBackupSession -Backup $backup ``` Perform the following steps: 1. Run the [`Get-VBRBackup`](get-vbrbackup.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$backup` variable. 2. Run the `Get-VBRCopyBackupSession` cmdlet. Set the `$backup` variable as the `Backup` parameter value. ::: ## Related Commands [`Get-VBRBackup`](get-vbrbackup.md)