--- title: "Get-VBRAzureApplianceSession" description: "Returns statuses of deployment sessions for helper restore appliance. Platform: VMware, Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns sta" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrazureappliancesession.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Restore to Microsoft Azure > Get-VBRAzureApplianceSession" dateModified: "2026-08-19" --- # Get-VBRAzureApplianceSession ## Short Description Returns statuses of deployment sessions for helper restore appliance. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns status of process initiated by the [`Deploy-VBRAzureLinuxRestoreAppliance`](deploy-vbrazurelinuxrestoreappliance.md) cmdlet. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

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

Guid

False

Named

True (ByPropertyName)

Session

Specifies the session. The cmdlet will return the status of this session.

Accepts the VBRAzureApplianceSession object. To get this object, run the Deploy-VBRAzureLinuxRestoreAppliance cmdlet.

VBRAzureApplianceSession

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 [`VBRAzureApplianceSession`](vbrazureappliancesession.md) ## Examples ::: example ### Example 1. Getting Statuses of All Sessions This command returns statuses of all sessions. ``` Get-VBRAzureApplianceSession ``` ::: ::: example ### Example 2. Getting Status of Specific Session This command returns status of a specific session. In this example, we assume that the user saved the session to a variable when they deployed the appliance. See examples for the [`Deploy-VBRAzureLinuxRestoreAppliance`](deploy-vbrazurelinuxrestoreappliance.md) cmdlet for details. ``` Get-VBRAzureApplianceSession -Session $appliancesession ``` :::