Get-ClusterResourceType

Get-ClusterResourceType

Gets information about one or more resource types in a failover cluster.

Sintaxis

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

Descripción detallada

The Get-ClusterResourceType cmdlet gets information about one or more resource types in a failover cluster. Obtain information such as the name of the dynamic-link library (DLL) through which the Cluster service communicates with a particular resource type.

Parámetros

-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.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-InputObject<PSObject>

Specifies the cluster on which to enumerate the cluster resource types.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByValue)

¿Aceptar caracteres comodín?

false

-Name<StringCollection>

Specifies the name of the cluster resource type to get.

Alias

ninguno

¿Requerido?

false

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

true

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

  • Microsoft.FailoverClusters.PowerShell.Cluster

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

  • Microsoft.FailoverClusters.PowerShell.ClusterResourceType

Ejemplos

EXAMPLE 1

This example lists all the resource types that can be used in configurations on the local cluster.

PS C:\> Get-ClusterResourceType

EXAMPLE 2

This example gets information about the File Server resource type on the local cluster, and displays the information in the form of a list.

PS C:\> Get-ClusterResourceType –Name "File Server" | Format-List –Property *

Temas relacionados

Add-ClusterResourceType

Remove-ClusterResourceType