--- title: "Find-VBRResourcePool (obsolete)" description: "This cmdlet returns a list of all VMware resource pools on the specified ESXi host." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/find-vbrresourcepool.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Find-VBRResourcePool (obsolete)" dateModified: "2026-08-19" --- # Find-VBRResourcePool ## Short Description Looks for VMware resource pools. ::: note This cmdlet is obsolete. The cmdlet still works, but it is recommended to rewrite your scripts using the [`Find-VBRViResourcePool`](find-vbrviresourcepool.md) cmdlet. ::: **Platform**: VMware ## Syntax ``` Find-VBRResourcePool [-Name ] [-Server] [] ``` ## Detailed Description This cmdlet returns a list of all VMware resource pools on the specified ESXi host. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies the name of the resource pool you want to get, or search conditions.

You can specify multiple names separated by commas.

String[]

False

Named

False

Server

Specifies the host you want to look for resource pool on.

CHost

True

0

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Example 1. Looking for VMware Resource Pools This example shows how to look for resource pools on the `esx01.tech.local` ESXi host. ```powershell $server = Get-VBRServer -Name "esx01.tech.local" Find-VBRResourcePool -Server $server ``` Perform the following steps: 1. Run the [`Get-VBRServer`](get-vbrserver.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$server` variable. 2. Run the `Find-VBRResourcePool` cmdlet. Set the `$server` variable as the `Server` parameter value. ::: ## Related Commands [`Get-VBRServer`](get-vbrserver.md)