--- title: "Set-HyperFlexHost" description: "This cmdlet modifies settings of Cisco HyperFlex storage systems. To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-hyperflexhost.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Storage Systems > Cisco HyperFlex Storage Systems > Set-HyperFlexHost" dateModified: "2026-08-19" --- # Set-HyperFlexHost ## Short Description Modifies Cisco HyperFlex storage settings. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Set-HyperFlexHost -Host [-Name ] [-Description ] [-UserName ] [-Password ] [-Credentials ] [-Proxy ] [-SkipRescan] [-Force] [-EnableProxyAutoSelection] [] ``` ## Detailed Description This cmdlet modifies settings of Cisco HyperFlex storage systems. ::: 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

Credentials

Specifies the credentials you want to use for authenticating with the storage.

Accepts the CInternalCredentials object. To get this object, run the Get-VBRCredentials cmdlet.

CInternalCredentials

False

Named

False

Description

Specifies the description of the storage.

String

False

Named

False

EnableProxyAutoSelection

Enables automatic proxy selection.

SwitchParameter

False

Named

False

Force

Defines that the cmdlet will add a Cisco HyperFlex without showing warnings in the PowerShell console.

SwitchParameter

False

Named

False

Host

Specifies the storage you want to modify.

Accepts the CCiscoHxHost object. To get this object, run the Get-HyperFlexHost cmdlet.

CCiscoHxHost

True

Named

True (ByPropertyName, ByValue)

Name

Specifies the name of the storage.

String

False

Named

False

Password

Specifies the password you want to use for authenticating with the storage.

String

False

Named

False

Proxy

Specifies the array of proxies you want to use to work with this storage.

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

IProxy[]

False

Named

False

SkipRescan

Defines that the cmdlet will not start the storage rescan automatically after you add storage systems to the backup infrastructure.

SwitchParameter

False

Named

False

UserName

Specifies the user name that you want to use for authenticating with the storage.

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). ## Output Object The cmdlet returns the `CCiscoHxHost` object that defines settings of the HyperFlex storage systems added to the backup infrastructure. ## Examples ::: example ### Modifying Cisco HyperFlex Storage Systems Credentials This example shows how to modify Cisco HyperFlex credentials. ``` $host = Get-HyperFlexHost $creds = Get-VBRCredentials Set-HyperFlexHost -Host $host -Credentials $creds ``` Perform the following steps: 1. Run the `Get-HyperFlexHost` cmdlet. Save the result to the `$host` variable. 2. Run the `Get-VBRCredentials` cmdlet. Save the result to the `$creds` variable. 3. Run the `Set-HyperFlexHost` cmdlet. Set the `$host` variable as the `Host` parameter value. Set the `$creds` variable as the `Credentials` parameter value. ::: ## Related Commands - [`Get-HyperFlexHost`](get-hyperflexhost.md) - [`Get-VBRCredentials`](get-vbrcredentials.md) - [`Get-VBRViProxy`](get-vbrviproxy.md)