Set-VBRESXi
Short Description
Modifies VMware ESXi hosts added to the backup infrastructure.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRESXi -Server <CHost> [-Port <Int32>] [-Credentials <CCredentials>] [-Description <String>] [-Force] [<CommonParameters>] |
Detailed Description
This cmdlet modifies an VMware ESXi host added to the backup infrastructure.
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 ESXi server.
Accepts the |
|
False |
Named |
False |
|
Description |
Specifies the description of the ESXi server. |
|
False |
Named |
False |
|
Force |
Defines that the cmdlet will modify settings of VMware ESXi hosts without showing warnings in the PowerShell console. |
|
False |
Named |
False |
|
Port |
Specifies the Web service port for connection to the ESXi host.
Default: |
|
False |
Named |
False |
|
Server |
Specifies the ESXi host you want to modify.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the CHost object that contains settings of the VMware ESXi hosts added to the backup infrastructure.
Examples
Modifying Credentials and Port Setting of VMware ESXi Host
This example shows how to change the credentials and Web service port settings of the ESXi host.
|
$host = Get-VBRServer -Type ESXi -Name support.north.local $creds = Get-VBRCredentials Set-VBRESXi -Server $host -Credentials $creds -Port 442 |
Perform the following steps:
- Run the
Get-VBRServerReturns hosts connected to the backup infrastructure. cmdlet. Specify theTypeandNameparameter values. Save the result to the$hostvariable. - Run the
Get-VBRCredentialsReturns credentials records. cmdlet. Save the result to the$credsvariable. - Run the
Set-VBRESXicmdlet. Set the$hostvariable as theServerparameter value. Set the$credsvariable as theCredentialsparameter value. Specify thePortparameter value.
Related Commands
Get-VBRServerReturns hosts connected to the backup infrastructure.Get-VBRCredentialsReturns credentials records.