--- title: "New-VBRCloudTenantHwPlanOptions" description: "Creates the VBRCloudTenantHwPlanOptions objects that contains hardware plan options. 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/new-vbrcloudtenanthwplanoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Replication Resources > New-VBRCloudTenantHwPlanOptions" dateModified: "2026-08-19" --- # New-VBRCloudTenantHwPlanOptions ## Short Description Creates the [`VBRCloudTenantHwPlanOptions`](vbrcloudtenanthwplanoptions.md) objects that contains hardware plan options. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License Requires a VCP license. ## Syntax ``` New-VBRCloudTenantHwPlanOptions -HardwarePlan [-EnableWanAcceleration] [-WanAccelerator ] [] ``` ## Detailed Description This cmdlet creates a [`VBRCloudTenantHwPlanOptions`](vbrcloudtenanthwplanoptions.md) object that contains a hardware plan. This object is used in the [`New-VBRCloudTenantReplicationResources`](new-vbrcloudtenantreplicationresources.md) cmdlet to specify the hardware plan options. You can also enable WAN acceleration and set a target WAN accelerator. Note that the tenant who plan to use the WAN acceleration must configure a source WAN accelerator on their side. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

EnableWanAcceleration

Enables the option to use WAN accelerators for backup jobs to cloud repositories.

Use the WanAccelerator parameter to set the WAN accelerator.

SwitchParameter

False

Named

False

HardwarePlan

Specifies the hardware plan from which you want to enable the WAN acceleration.

Accepts the VBRHvCloudHardwarePlan or VBRViCloudHardwarePlan object. To get this object, run the Get-VBRCloudHardwarePlan cmdlet.

VBRCloudHardwarePlan

True

Named

True (ByPropertyName, ByValue)

WanAccelerator

Specifies the WAN accelerator for the EnableWanAccelerator parameter.

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

CWanAccelerator

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). ## Output Object [`VBRCloudTenantHwPlanOptions`](vbrcloudtenanthwplanoptions.md) ## Examples ::: example ### Example 1. Creating Hardware Plan Options Without WAN Acceleration This example shows how to create a hardware plan options object without WAN acceleration. ``` $HwPlan = Get-VBRCloudHardwarePlan -Name "VMware Silver" $options = New-VBRCloudTenantHwPlanOptions -HardwarePlan $HwPlan ``` Perform the following steps: 1. Run the [`Get-VBRCloudHardwarePlan`](get-vbrcloudhardwareplan.md) cmdlet. Specify the `Name` parameter value. Save it to the `$HwPlan` variable. 2. Run the `New-VBRCloudTenantHwPlanOptions` cmdlet. Set the `$HwPlan` variable as the `HardwarePlan` parameter value. Save the result to the `$options` variable for further use. ::: ::: example ### Example 2. Enabling WAN Acceleration for VMware Hardware Plan This example shows how to enable WAN acceleration for a VMware hardware plan. ``` $HwPlan = Get-VBRCloudHardwarePlan -Platform VMWare -Name "VMware Silver" $wan = Get-VBRWANAccelerator -Name "Columbus WAN" $options = New-VBRCloudTenantHwPlanOptions -HardwarePlan $HwPlan -EnableWanAcceleration -WanAccelerator $wan ``` Perform the following steps: 1. Run the [`Get-VBRCloudHardwarePlan`](get-vbrcloudhardwareplan.md) cmdlet. Set the `VMWare` option for the `Platform` parameter. Specify the `Name` parameter value. Save it to the `$HwPlan` variable. 2. Run the [`Get-VBRWANAccelerator`](get-vbrwanaccelerator.md) cmdlet. Specify the `Name` parameter value. Save it to the `$wan` variable. 3. Run the `New-VBRCloudTenantHwPlanOptions` using the saved variables. Specify the following settings: - Set the `$HwPlan` variable as the `HardwarePlan` parameter value. - Provide the `EnableWanAcceleration` parameter. - Set the `$wan` variable as the `WanAccelerator` parameter value. - Save the result to the `$options` variable for further use. ::: ::: example ### Example 3. Enabling WAN Acceleration for VMware Hardware Plan This example shows how to enable WAN acceleration for a Hyper-V hardware plan. ``` $HwPlan = Get-VBRCloudHardwarePlan -Platform HyperV -Name "Hyper-V Silver" $wan = Get-VBRWANAccelerator -Name "Columbus WAN" $options = New-VBRCloudTenantHwPlanOptions -HardwarePlan $HwPlan -EnableWanAcceleration -WanAccelerator $wan ``` Perform the following steps: 1. Run the [`Get-VBRCloudHardwarePlan`](get-vbrcloudhardwareplan.md) cmdlet. Set the `HyperV` option for the `Platform` parameter. Specify the `Name` parameter value. Save it to the `$HwPlan` variable. 2. Run the [`Get-VBRWANAccelerator`](get-vbrwanaccelerator.md) cmdlet. Specify the `Name` parameter value. Save it to the `$wan` variable. 3. Run the `New-VBRCloudTenantHwPlanOptions` using the saved variables. Specify the following settings: - Set the `$HwPlan` variable as the `HardwarePlan` parameter value. - Provide the `EnableWanAcceleration` parameter. - Set the `$wan` variable as the `WanAccelerator` parameter value. - Save the result to the `$options` variable for further use. ::: ## Related Commands - [`Get-VBRCloudHardwarePlan`](get-vbrcloudhardwareplan.md) - [`Get-VBRWANAccelerator`](get-vbrwanaccelerator.md)