Get-ClusterResource

Get-ClusterResource

Gets information about one or more resources in a failover cluster.

구문

Parameter Set: InputObject
Get-ClusterResource [[-Name] <StringCollection> ] [-Cluster <String> ] [-InputObject <PSObject> ] [-VMId <Guid> ] [ <CommonParameters>]

자세한 설명

The Get-ClusterResource cmdlet gets information about one or more resources in a failover cluster.

To set a common property for a clustered resource, use this cmdlet to get the object for the clustered resource, and then set the appropriate property on that object directly. To get and set more specific information about a clustered resource, use this cmdlet with Get-ClusterParameter and Set-ClusterParameter.

매개 변수

-Cluster<String>

Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is . or it is omitted, then the cmdlet runs on the local cluster.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-InputObject<PSObject>

Specifies the cluster node or cluster group on which to enumerate cluster resources.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

true (ByValue)

와일드카드 문자 허용 여부

false

-Name<StringCollection>

Specifies the name of the cluster resource to get.

별칭

없음

필수 여부

false

위치

1

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

true

-VMId<Guid>

Specifies the virtual machine identifier (ID).

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

true (ByPropertyName)

와일드카드 문자 허용 여부

false

<CommonParameters>

이 cmdlet은 일반 매개 변수 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer 및 -OutVariable을 지원합니다. 자세한 내용은 다음을 참조하세요. about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216).

입력

입력 유형은 cmdlet에 파이프할 수 있는 개체의 유형입니다.

  • Microsoft.FailoverClusters.PowerShell.Cluster
  • Microsoft.FailoverClusters.PowerShell.ClusterResource
  • Microsoft.FailoverClusters.PowerShell.ClusterNode

출력

출력 유형은 cmdlet이 내보내는 개체의 유형입니다.

  • Microsoft.FailoverClusters.PowerShell.ClusterResource

예제

EXAMPLE 1

This example lists all cluster resources on the local cluster.

PS C:\> Get-ClusterResource

EXAMPLE 2

This example displays information about Cluster Disk 2, on the local cluster, in the form of a list.

PS C:\> Get-ClusterResource –Name "Cluster Disk 2" | Format-List –Property *

EXAMPLE 3

This example displays detailed parameters for Cluster Disk 2 on the local cluster.

PS C:\> Get-ClusterResource –Name "Cluster Disk 2" | Get-ClusterParameter

EXAMPLE 4

This example lists cluster resources in cluster group named FileServer1, a clustered file server on the local cluster.

PS C:\> Get-ClusterGroup –Name FileServer1 | Get-ClusterResource

EXAMPLE 5

This example sets the common property RestartDelay for the Cluster Disk 2 resource on the local cluster to 600.

PS C:\> Get-ClusterResource –Name "Cluster Disk 2" | ForEach-Object –Process {$_.RestartDelay = 600}

Example 6

This example shows how to display the owner of a cluster pooled disk.

PS C:\> Get-ClusterResource –Name "cluster pool 1" | Format-List -Property OwnerNode

Example 7

This example enumerates the cluster resources for wildcard characters *print-VM1 and stops the corresponding virtual machines. Verbose mode is turned on for details of the operation.

PS C:\> Get-ClusterResource –Name *print-VM1 | Get-VM | Stop-VM -Verbose
[Y] Yes  [N] No  [S] Suspend  [?] Help (default is "Y"):Y

관련 항목

Add-ClusterResource

Move-ClusterResource

Remove-ClusterResource

Resume-ClusterResource

Start-ClusterResource

Stop-ClusterResource

Suspend-ClusterResource

ForEach-Object

Format-List