Sync-VBOEntity
Short Description
Rescans backup proxies.
Syntax
This cmdlet provides the following parameter sets.
- Rescan all backup proxies added to Veeam Backup for Microsoft Office 365 configuration
Sync-VBOEntity [<CommonParameters>] |
- Rescan a specific backup proxy
Sync-VBOEntity -Entity <Object[]> [<CommonParameters>] |
Updated Cmdlet Sets
In Veeam Backup for Microsoft Office 365 3.0, the following cmdlet set have been updated. If you had already used this cmdlet set in previous versions, mind the syntax. Use the Sync-VBOEntity cmdlet without any parameters to rescan all backup proxies.
Sync-VBOEntity [-AllProxies] [<CommonParameters>] |
Detailed Description
This cmdlet rescans backup proxies added to Veeam Backup for Microsoft Office 365.
You can rescan all backup proxies or select a specific one.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Entity | Specifies an array of backup proxies added to Veeam Backup for Microsoft Office 365. The cmdlet will rescan the selected backup proxies. | True | Named | True (ByValue) | False |
AllProxies | OBSOLETE: Indicates that the cmdlet will rescan all backup proxies added to Veeam Backup for Microsoft Office 365. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Example 1
This command rescans all backup proxies added to Veeam Backup for Microsoft Office 365.
Sync-VBOEntity |
Example 2
This example shows how to rescan backup proxies with 172.17.53.53 and 172.17.51.60 IP addresses.
- Run the Get-VBOProxy cmdlet. Set 172.17.53.53 as the Hostname parameter value. Save the result to the $proxy1 variable.
- Run the Get-VBOProxy cmdlet. Set 172.17.51.60 as the Hostname parameter value. Save the result to the $proxy2 variable.
- Run the Sync-VBOEntity cmdlet. Set the $proxy1 and $proxy2 variables as the Entity parameter value.
$proxy1 = Get-VBOProxy -Hostname 172.17.53.53 $proxy2 = Get-VBOProxy -Hostname 172.17.51.60 Sync-VBOEntity -Entity $proxy1, $proxy2 |
Example 3
OBSOLETE: This command rescans all backup proxies added to Veeam Backup for Microsoft Office 365.
Sync-VBOEntity -AllProxies |
Related Commands