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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Backup

Specifies the backup for which you want to get move 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 move 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 `VBRMoveBackupSession[]` object that contains settings of the move session. ## Examples ::: example ### Getting Move Sessions for Specific Backup This example shows how to look for move sessions for the `Cloud Webservices Backup` backup job. ``` $backup = Get-VBRBackup -Name "Cloud Webservices Backup" Get-VBRMoveBackupSession -Backup $backup ``` Perform the following steps: 1. Run the [`Get-VBRBackup`](get-vbrbackup.md) cmdlet. Provide the `Name` parameter value. Save the result to the `$backup` variable. 2. Run the `Get-VBRMoveBackupSession` cmdlet. Set the `$backup` variable as the `Backup` parameter value. ::: ## Related Commands [`Get-VBRBackup`](get-vbrbackup.md)