--- title: "Get-VEHANASystem" description: "Returns information about a backed-up SAP HANA system. Product: Veeam Backup & Replication Product Edition: Enterprise Plus, Veeam Universal License This cmdlet returns information about a backed-up SAP HANA system." canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/get-vehanasystem.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for SAP HANA > Get-VEHANASystem" dateModified: "2026-08-18" --- # Get-VEHANASystem ## Short Description Returns information about a backed-up SAP HANA system. **Product**: Veeam Backup & Replication **Product Edition**: Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VEHANASystem [-Session] [] ``` ## Detailed Description This cmdlet returns information about a backed-up SAP HANA system. After you get the SAP HANA system, you can use the [`Get-VEHANADatabase`](get-vehanadatabase.md) cmdlet to get an array of the databases available on the system. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Session

Specifies a restore session initiated to perform operations with SAP HANA databases.

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

VEHANARestoreSession

True

0

True (ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Docs. ## Output Object The cmdlet returns the [`VEHANASystem`](vehanasystem.md) object that contains information about the specified SAP HANA system. ## Examples ::: example ### Getting SAP HANA System This example shows how to get the necessary SAP HANA system from the relevant restore session. ``` $session = Get-VEHANARestoreSession $system = Get-VEHANASystem -Session $session[0] ``` Perform the following steps: 1. Run the [`Get-VEHANARestoreSession`](get-vehanarestoresession.md) cmdlet. Save the result to the `$session` variable. The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session. In this example, it is the first restore session in the array. 2. Run the `Get-VEHANASystem` cmdlet. Set the `$session` variable as the `Session` parameter value and select the necessary restore session. Save the result to the `$system` variable to be able to use it with other cmdlets. ::: ## Related Commands [`Get-VEHANARestoreSession`](get-vehanarestoresession.md)