--- title: "Get-HP3Storage" description: "This cmdlet returns HPE 3PAR StoreServ storages added to Veeam Backup & Replication. You can get the list of all storages added to your virtual infrastructure or narrow down the output by storage name." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-hp3storage.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > HPE 3PAR StoreServ Storage Systems > Get-HP3Storage" dateModified: "2026-08-19" --- # Get-HP3Storage ## Short Description Returns HPE 3PAR StoreServ storage systems. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License **Storage System**: HPE 3PAR StoreServ ## Syntax ``` Get-HP3Storage [-Name ] [] ``` ## Detailed Description This cmdlet returns HPE 3PAR StoreServ storages added to Veeam Backup & Replication. You can get the list of all storages added to your virtual infrastructure or narrow down the output by storage name. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies the array of storage names. The cmdlet will return the storage systems with these names.

String[]

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). ## Examples ::: example ### Example 1. Getting All HPE 3PAR StoreServ Storage Systems This command returns all HPE 3PAR StoreServ storage systems. ``` Get-HP3Storage ``` ::: ::: example ### Example 2. Getting HPE 3PAR StoreServ Storage System by Name This command returns an HPE 3PAR StoreServ storage by name. ``` Get-HP3Storage -Name "HPE 3PAR StoreServe Storage" ``` :::