Syntax
Get-DrsRecommendation [[-Cluster] <Cluster[]>] [-Refresh] [-Priority <Int32[]>] [-Server <VIServer[]>] [<CommonParameters>]Related Commands
Online versionDetailed Description
This cmdlet retrieves the available DRS recommendations from the provided clusters.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
Cluster | Cluster[] | Specifies the clusters whose DRS recommendations you want to retrieve. | false | true (ByValue) | |
Priority | Int32[] | Specifies the priority of the DRS recommendations you want to retrieve. The valid values range from 1 to 5. | false | false | |
Refresh | SwitchParameter | Indicates that you want the cmdlet to refresh the information about the DRS recommendations before retrieving it. | false | false | |
Server | VIServer[] | Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is passed to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer. | false | false |
Return Type
Zero or more DrsRecommendation objectsNotes
Examples
-------------- Example 1 --------------
Get-Cluster Cluster | Get-DrsRecommendation -Priority 4,5
Retrieves the DRS recommendations with priorities 4 and 5 from the Cluster cluster.
-------------- Example 2 --------------
Get-DrsRecommendation -Cluster Cluster -Refresh
Refreshes and retrieves information about the DRS recommendations from the Cluster cluster.