--- title: "Get-VNXHost" description: "You can get the list of all Dell VNX storage systems added to your virtual infrastructure or narrow down the output by storage name." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vnxhost.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > Dell VNX Storage Systems > Get-VNXHost" dateModified: "2026-08-19" --- # Get-VNXHost ## Short Description Returns Dell VNX storage systems. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License **Storage System**: Dell VNX ## Syntax ``` Get-VNXHost [-Name ] [] ``` ## Detailed Description You can get the list of all Dell VNX storage systems 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 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. Returning All Dell VNX Storage Systems This command returns all Dell VNX storage systems. ``` Get-VNXHost ``` ::: ::: example ### Example 2. Returning Dell VNX Storage System by Name This command returns a Dell VNX storage by name. ``` Get-VNXHost -Name "VNX Storage" ``` :::