--- title: "Get-VBRCloudHardwarePlan" description: "Returns existing hardware plans. Platform: VMware, Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License Requires a VCP license." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcloudhardwareplan.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Hardware Plans > Get-VBRCloudHardwarePlan" dateModified: "2026-08-19" --- # Get-VBRCloudHardwarePlan ## Short Description Returns existing hardware plans. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License Requires a VCP license. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns existing hardware plans. You can get the list of all hardware plans or search for instances directly by name, virtuallization platform or ID. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies the array of the IDs of the VBRViCloudHardwarePlan or VBRHvCloudHardwarePlan object you want to get.

Accepts Guid[] or String[].

Guid[]

True

Named

True (ByPropertyName, ByValue)

Name

Specifies the array of the hardware plan names you want to get.

String[]

False

Named

True (ByPropertyName, ByValue)

Platform

Specifies the platform of the hardware plan:

  • VMWare
  • HyperV
  • vCD
  • LinuxPhysical
  • WindowsPhysical
  • Tape
  • CustomPlatform

VBRPlatform

False

Named

True (ByPropertyName)

`` 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 Hardware Plans This command returns all existing hardware plans. ``` Get-VBRCloudHardwarePlan ``` ::: ::: example ### Example 2. Getting All VMware Hardware Plans This command returns all VMware hardware plans. ``` Get-VBRCloudHardwarePlan -Platform VMWare ``` ::: ::: example ### Example 3. Getting All Hyper-V Hardware Plans This command returns all Hyper-V hardware plans. ``` Get-VBRCloudHardwarePlan -Platform HyperV ``` ::: ::: example ### Example 4. Getting Hardware Plan by Name This command returns a hardware plan named `VMware Silver`. ``` Get-VBRCloudHardwarePlan -Name "VMware Silver" ``` ::: ::: example ### Example 5. Getting Hardware Plan by Platform and Name This command returns a Hyper-V hardware plan named `Hyper-V Silver`. ``` Get-VBRCloudHardwarePlan -Name "Hyper-V Silver" -Platform HyperV ``` :::