Add-VBOProxyPool
Short Description
Adds a backup proxy pool to the Veeam Backup for Microsoft 365 infrastructure.
Syntax
|
Add-VBOProxyPool -Name <String> [-Description <String>] -Proxies <VBOProxy[]> [<CommonParameters>] |
Detailed Description
This cmdlet adds a backup proxy pool to the Veeam Backup for Microsoft 365 backup infrastructure.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Description |
Specifies a description of the backup proxy pool. The default description contains information on the user who added the backup proxy pool, date and time when the backup proxy pool was added. |
|
False |
Named |
False |
|
Name |
Specifies a name of the backup proxy pool. The cmdlet will create a backup proxy pool with this name. |
|
True |
Named |
False |
|
Proxies |
Specifies an array of backup proxy servers. The cmdlet will add these backup proxy servers to the backup proxy pool.
Accepts the
To create this object, run the |
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Learn.
Output Object
The cmdlet returns the VBOProxyPool object that contains settings of a backup proxy pool added to the Veeam Backup for Microsoft 365 backup infrastructure.
Examples
Adding Backup Proxy Pool
This example shows how to add a backup proxy pool to the Veeam Backup for Microsoft 365 infrastructure.
|
$proxy1 = Get-VBOProxy -Hostname 172.70.53.53 $proxy2 = Get-VBOProxy -Hostname linux01 Add-VBOProxyPool -Name "Pool1" -Proxies ($proxy1, $proxy2) |
Perform the following steps:
- Run the
Get-VBOProxyReturns backup proxy servers added to the Veeam Backup for Microsoft 365 infrastructure. cmdlet. Specify theHostnameparameter value. Save the result to the$proxy1variable. - Run the
Get-VBOProxyReturns backup proxy servers added to the Veeam Backup for Microsoft 365 infrastructure. cmdlet. Specify theHostnameparameter value. Save the result to the$proxy2variable. - Run the
Add-VBOProxyPoolcmdlet. Specify theNameparameter value. Set the$proxy1and$proxy2variables as theProxiesparameter value.
Related Commands
Get-VBOProxyReturns backup proxy servers added to the Veeam Backup for Microsoft 365 infrastructure.