Short Description
Rescans backup proxies.
Syntax
This cmdlet provides two parameter sets.
- For rescanning specific backup proxies:
Sync-VBOEntity -Entity <Object[]> [<CommonParameters>] |
- For rescanning 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 specific ones.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Entity | Specifies the array of backup proxies added to Veeam Backup for Microsoft Office 365. The cmdlet will rescan the selected proxies. | True | Named | True (ByValue) | False |
AllProxies | 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 about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Example 1
This example shows how to rescan several backup proxies added to Veeam Backup for Microsoft Office 365.
You will need to perform the following steps:
- Run Get-VBOProxy to get the proxies you want to rescan. Save each proxy to a separate variable: $proxy1, $proxy2, etc.
- Run Sync-VBOEntity with the $proxy1 and $proxy2 variables.
PS C:\PS> $proxy1 = Get-VBOProxy -Hostname 172.17.53.53 PS C:\PS> $proxy2 = Get-VBOProxy -Hostname 172.17.51.60 PS C:\PS> Sync-VBOEntity -Entity $proxy1, $proxy2 |
Example 2
This command rescans all backup proxies added to Veeam Backup for Microsoft Office 365.
PS C:\PS> Sync-VBOEntity -AllProxies |
Related Commands