--- title: "Set-VBRHvInstantRecoveryHelperAppliance" description: "Modifies settings for a helper appliance. Platform: Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet modifies settings of a helper appliance used in Instant Recovery to Microsoft Hyper-V." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-vbrhvinstantrecoveryhelperappliance.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Instant Recovery > Set-VBRHvInstantRecoveryHelperAppliance" dateModified: "2026-08-19" --- # Set-VBRHvInstantRecoveryHelperAppliance ## Short Description Modifies settings for a helper appliance. **Platform**: Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Set-VBRHvInstantRecoveryHelperAppliance -HelperAppliance [-Network ] [-VLanID ] [-EnableIPv4Interface] [-ObtainIPAutomatically] [-IpAddress ] [-SubnetMask ] [-DefaultGateway ] [-ObtainDNSAutomatically] [-PreferredDNSServer ] [-AlternateDNSServer ] [-EnableIPv6Interface] [-ObtainIPv6AddressAutomatically] [-IPv6Address ] [-IPv6PrefixLength ] [-IPv6DefaultGateway ] [-ObtainIPv6DNSAutomatically] [-IPv6PreferredDNSServer ] [-IPv6AlternateDNSServer ] [] ``` ## Detailed Description This cmdlet modifies settings of a helper appliance used in Instant Recovery to Microsoft Hyper-V. ::: note To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

AlternateDNSServer

Specifies the IPv4 address of an alternate DNS server in the network where the appliance resides.

IPAddress

False

Named

False

DefaultGateway

Specifies the IPv4 address of the default gateway in the network where the appliance resides.

IPAddress

False

Named

False

EnableIPv4Interface

Enables the option to use IPv4 addresses.

IPv4 is used by default.

SwitchParameter

False

Named

False

EnableIPv6Interface

Enables the option to use IPv6 addresses.

SwitchParameter

False

Named

False

HelperAppliance

Specifies a helper appliance which settings you want to modify.

Accepts the VBRHvInstantRecoveryHelperAppliance object. To create this object, run the New-VBRHvInstantRecoveryHelperAppliance cmdlet.

VBRHvInstantRecoveryHelperAppliance

True

Named

True (ByPropertyName, ByValue)

IpAddress

For the ObtainIPAutomatically parameter set to False.

Specifies the IPv4 address of the helper appliance.

IPAddress

False

Named

False

IPv6Address

For the EnableIPv6Interface parameter specified and the ObtainIPAutomatically parameter set to False.

If you provide this parameter Veeam Backup & Replication will use IPv6 addresses.

IPAddress

False

Named

False

IPv6AlternateDNSServer

For the EnableIPv6Interface parameter specified and the ObtainIPAutomatically parameter set to False.

Specifies the IPv6 address of the alternate DNS server in the network where the appliance resides.

IPAddress

False

Named

False

IPv6DefaultGateway

For the EnableIPv6Interface parameter specified and the ObtainIPAutomatically parameter set to False.

Specifies the IPv6 address of the default gateway in the network where the appliance resides.

IPAddress

False

Named

False

IPv6PreferredDNSServer

For the EnableIPv6Interface parameter specified and the ObtainIPAutomatically parameter set to False.

Specifies the IPv6 address of the DNS server in the network where the appliance resides.

IPAddress

False

Named

False

IPv6PrefixLength

For the EnableIPv6Interface parameter specified and the ObtainIPAutomatically parameter set to False.

Specifies the length of the IPv6 prefix.

Int32

False

Named

False

Network

Specifies an array of production networks to which the helper appliance must be connected.

Accepts the VBRHvServerNetworkInfo[] object. To get this object, run the Get-VBRHvServerNetworkInfo cmdlet.

VBRHvServerNetworkInfo

False

Named

False

ObtainDNSAutomatically

Use if you have a DHCP server in the network.

If you provide this parameter, Veeam Backup & Replication will obtain an IPv4 address of the DNS server automatically.

SwitchParameter

False

Named

False

ObtainIPAutomatically

Use if you have a DHCP server in the network.

If you provide this parameter, Veeam Backup & Replication will obtain an IP address of the helper appliance automatically.

SwitchParameter

False

Named

False

ObtainIPv6AddressAutomatically

Use if you have a DHCP server in the network.

If you provide this parameter, Veeam Backup & Replication will obtain an IPv6 address of the helper appliance automatically.

SwitchParameter

False

Named

False

ObtainIPv6DNSAutomatically

For the EnableIPv6Interface parameter specified and the ObtainIPAutomatically parameter set to False.

Use if you have a DHCP server in the network.

If you provide this parameter, Veeam Backup & Replication will obtain an IPv6 address of the DNS server automatically.

SwitchParameter

False

Named

False

PreferredDNSServer

Specifies the IPv4 address of the DNS server in the network where the appliance resides.

IPAddress

False

Named

False

SubnetMask

Specifies the subnet mask of the network where the helper appliance will be connected.

IPAddress

False

Named

False

VLanID

Specifies the VLAN ID where the helper appliance must reside.

Int32

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 The cmdlet returns the `VBRHvInstantRecoveryHelperAppliance` object that defines helper appliance settings. ## Examples ::: example ### Change IP address settings of a helper appliance This example shows how to modify IP address settings for a helper appliance. ``` $network = Get-VBRHvServerNetworkInfo -Server "srv01.tech.local" $appliance = New-VBRHvInstantRecoveryHelperAppliance -Network $network Set-VBRHvInstantRecoveryHelperAppliance -HelperAppliance $appliance -ObtainIPAutomatically ``` Perform the following steps: 1. Run the [`Get-VBRHvServerNetworkInfo`](get-vbrhvservernetworkinfo.md) cmdlet. Specify the `Server` parameter. Save the result to the `$network` variable. 2. Run the [`New-VBRHvInstantRecoveryHelperAppliance`](new-vbrhvinstantrecoveryhelperappliance.md) cmdlet. Set the `$network` variable as the `Network` parameter value. Save the result to the `$appliance` variable. 3. Run the `Set-VBRHvInstantRecoveryHelperAppliance` cmdlet. Set the `$appliance` variable as the `HelperAppliance` parameter value. Provide the `ObtainIPAutomatically` parameter. :::