Skip to content

Latest commit

 

History

History
204 lines (139 loc) · 4.76 KB

File metadata and controls

204 lines (139 loc) · 4.76 KB
description external help file Module Name ms.date online version schema title
Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
Microsoft.FailoverClusters.PowerShell.dll-Help.xml
FailoverClusters
11/22/2022
2.0.0
Get-ClusterResource

Get-ClusterResource

SYNOPSIS

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

SYNTAX

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

DESCRIPTION

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.

EXAMPLES

Example 1

Get-ClusterResource

This example lists all cluster resources on the local cluster.

Example 2

Get-ClusterResource -Name "Cluster Disk 2" | Format-List -Property *

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

Example 3

Get-ClusterResource -Name "Cluster Disk 2" | Get-ClusterParameter

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

Example 4

Get-ClusterGroup -Name FileServer1 | Get-ClusterResource

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

Example 5

Get-ClusterResource -Name "Cluster Disk 2" | ForEach-Object -Process {
    $_.RestartDelay = 600
}

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

Example 6

Get-ClusterResource -Name "cluster pool 1" | Format-List -Property OwnerNode

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

Example 7

Get-ClusterResource -Name *print-VM1 | Get-VM | Stop-VM -Verbose -Confirm:$false

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

PARAMETERS

-Cluster

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.

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-InputObject

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

Type: PSObject
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-Name

Specifies the name of the cluster resource to get.

Type: StringCollection
Parameter Sets: (All)
Aliases:

Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-VMId

Specifies the virtual machine identifier (ID).

Type: Guid
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Microsoft.FailoverClusters.PowerShell.Cluster

Microsoft.FailoverClusters.PowerShell.ClusterResource

Microsoft.FailoverClusters.PowerShell.ClusterNode

OUTPUTS

Microsoft.FailoverClusters.PowerShell.ClusterResource

NOTES

RELATED LINKS

ForEach-Object

Format-List

Add-ClusterResource

Move-ClusterResource

Remove-ClusterResource

Resume-ClusterResource

Start-ClusterResource

Stop-ClusterResource

Suspend-ClusterResource