Update-VBOProxy

Short Description

Upgrades backup proxy servers.

Syntax

Update-VBOProxy -Proxy <VBOProxy[]> [-Credential <PSCredential>]  [<CommonParameters>]

Detailed Description

This cmdlet upgrades an array of backup proxy servers.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Accept Wildcard Characters

Proxy

Specifies an array of backup proxy servers. The cmdlet will upgrade these backup proxy servers.

Accepts the VBOProxy[] object.

To get this object, run the Get-VBOProxy cmdlet.

True

Named

False

False

Credential

Specifies credentials. The cmdlet will use these credentials to access the backup proxy server.

If you omit this parameter, the cmdlet will use current account credentials.

PSCredential

False

Named

False

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Examples

Update-VBOProxyExample 1. Upgrading All Backup Proxy Servers

This example shows how to upgrade all backup proxy servers that are added to Veeam Backup for Microsoft 365.

$proxy = Get-VBOProxy

Update-VBOProxy -Proxy $proxy

Perform the following steps:

  1. Run the Get-VBOProxy cmdlet. Save the result to the $proxy variable.
  2. Run the Update-VBOProxy cmdlet. Set the $proxy variable as the Proxy parameter value.

Update-VBOProxyExample 2. Upgrading Specific Backup Proxy Server

This example shows how to upgrade the proxy03.tech.local backup proxy server that is added to Veeam Backup for Microsoft 365. To connect to the backup proxy server, the cmdlet will use current account credentials.

$proxy = Get-VBOProxy -Hostname "proxy03.tech.local"

Update-VBOProxy -Proxy $proxy

Perform the following steps:

  1. Run the Get-VBOProxy cmdlet. Specify the Hostname parameter value. Save the result to the $proxy variable.
  2. Run the Update-VBOProxy cmdlet. Set the $proxy variable as the Proxy parameter value.

Update-VBOProxyExample 3. Upgrading Backup Proxy Servers with Proxy Credentials

This example shows how to upgrade the proxy03.tech.local backup proxy server that is added to Veeam Backup for Microsoft 365. To connect to the backup proxy server, the cmdlet will use the backup proxy server credentials.

$proxy = Get-VBOProxy -Hostname "proxy03.tech.local"

$credentials = Get-Credential

Update-VBOProxy -Proxy $proxy -Credential $credentials

Perform the following steps:

  1. Run the Get-VBOProxy cmdlet. Specify the Hostname parameter value. Save the result to the $proxy variable.
  2. Run the Get-Credential cmdlet to create a credential object. Enter credentials that will be used to connect to the proxy server. Save the result to the $credentials variable.
  3. Run the Update-VBOProxy cmdlet. Specify the $proxy variable as the Proxy parameter value. Specify $credentials variable as the Credential parameter value.

Related Commands