--- title: "Get-VBOProxyPool" description: "This cmdlet returns a list of backup proxy pools added to the Veeam Backup for Microsoft 365 backup infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/get-vboproxypool.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Backup Infrastructure > Backup Proxy Pools > Get-VBOProxyPool" dateModified: "2026-08-21" --- # Get-VBOProxyPool ## Short Description Returns backup proxy pools added to the Veeam Backup for Microsoft 365 infrastructure. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns a list of backup proxy pools added to the Veeam Backup for Microsoft 365 backup infrastructure. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an ID of the backup proxy pool. The cmdlet will return the backup proxy pool with the specified ID.

Guid

True

Named

False

Name

Specifies a name of the backup proxy pool. The cmdlet will return the backup proxy pool with this name.

String

True

Named

False

`` 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. ## Output Object The cmdlet returns the [`VBOProxyPool`](vboproxypool.md) object that contains settings of a backup proxy pool. ## Examples ::: example ### Example 1: Getting All Backup Proxy Pools This command returns all backup proxy pools that are added to the Veeam Backup for Microsoft 365 infrastructure. ``` Get-VBOProxyPool ``` ::: ::: example ### Example 2: Getting Backup Proxy Pool by ID This command returns a backup proxy pool with the ID `65de3d78-0154-4e34-9848-350a1a423d87`. ``` Get-VBOProxyPool -Id 65de3d78-0154-4e34-9848-350a1a423d87 ``` ::: ::: example ### Example 3: Getting Backup Proxy Pool by Name This command returns a backup proxy pool with the *Pool* name. ``` Get-VBOProxyPool -Name "Pool" ``` :::