Remove-Cluster Resource Type

Removes a resource type from a failover cluster.

Syntax

Remove-ClusterResourceType
      [[-Name] <StringCollection>]
      [-InputObject <PSObject>]
      [-Cluster <String>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]

Description

The Remove-ClusterResourceType cmdlet removes a resource type from a failover cluster. A resource type is a class of resource, such as physical disk, network name, or virtual machine, that is organized by the failover cluster. After a resource type is removed from a failover cluster, resources of that type will not be able to be used in the cluster.

Examples

Example 1

PS C:\> Remove-ClusterResourceType -Name ResType1

This example removes the registered resource type named ResType1 on the local cluster.

Optional 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
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Aliases: cf
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
-InputObject

Specifies the cluster resource type to remove.

Type: PSObject
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
-Name

Specifies the name of the cluster resource type to remove.

Type: StringCollection
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: SwitchParameter
Aliases: wi
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

Inputs

Microsoft.FailoverClusters.PowerShell.ClusterResourceType

Outputs

None