--- title: "Sync-VBOProxy" description: "This cmdlet rescans backup proxy servers added to Veeam Backup for Microsoft 365. You can either rescan all backup proxy servers or rescan a specific backup proxy server." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/sync-vboproxy.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Backup Infrastructure > Backup Proxy Servers > Sync-VBOProxy" dateModified: "2026-08-21" --- # Sync-VBOProxy ## Short Description Rescans backup proxy servers. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet rescans backup proxy servers added to Veeam Backup for Microsoft 365. You can either rescan all backup proxy servers or rescan a specific backup proxy server. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Proxy

Specifies an array of backup proxy servers added to Veeam Backup for Microsoft 365. The cmdlet will rescan the specified backup proxy servers.

Accepts the VBOProxy[] object.

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

VBOProxy[]

False

Named

True (ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Examples ::: example ### Example 1: Rescanning All Backup Proxy Servers This command rescans all backup proxy servers added to Veeam Backup for Microsoft 365. ``` Sync-VBOProxy ``` ::: ::: example ### Example 2: Rescanning Specific Backup Proxy Servers This example shows how to rescan backup proxy servers with the `172.17.53.53` and `172.17.51.60` IP addresses. ``` $proxy1 = Get-VBOProxy -Hostname 172.17.53.53 $proxy2 = Get-VBOProxy -Hostname 172.17.51.60 Sync-VBOProxy -Proxy ($proxy1, $proxy2) ``` Perform the following steps: 1. Run the [`Get-VBOProxy`](get-vboproxy.md) cmdlet. Specify the `Hostname` parameter value. Save the result to the `$proxy1` variable. 2. Run the [`Get-VBOProxy`](get-vboproxy.md) cmdlet. Specify the `Hostname` parameter value. Save the result to the `$proxy2` variable. 3. Run the `Sync-VBOProxy` cmdlet. Set the `$proxy1` and `$proxy2` variables as the `Proxy` parameter value. ::: ## Related Commands [`Get-VBOProxy`](get-vboproxy.md)