Find-VBRResourcePool (obsolete)
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 |
Platform: VMware
Syntax
|
Find-VBRResourcePool [-Name <String[]>] [-Server] <CHost> [<CommonParameters>] |
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. |
|
False |
Named |
False |
|
Server |
Specifies the host you want to look for resource pool on. |
|
True |
0 |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Example 1. Looking for VMware Resource Pools
This example shows how to look for resource pools on the esx01.tech.local ESXi host.
|
$server = Get-VBRServer -Name "esx01.tech.local" Find-VBRResourcePool -Server $server |
Perform the following steps:
- Run the
Get-VBRServerReturns hosts connected to the backup infrastructure. cmdlet. Specify theNameparameter value. Save the result to the$servervariable. - Run the
Find-VBRResourcePoolcmdlet. Set the$servervariable as theServerparameter value.
Related Commands
Get-VBRServerReturns hosts connected to the backup infrastructure.