PowerShell Logo Small

Add-ClusterResourceType



This is the built-in help made by Microsoft for the command 'Add-ClusterResourceType', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Adds a resource type to a failover cluster, and specifies information such as the dynamic-link library (DLL) to use with that resource type.

SYNTAX


Add-ClusterResourceType [-Name] <String> [-Dll] <String> [[-DisplayName] <String>] [-Cluster <String>] [-InputObject <PSObject>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Add-ClusterResourceType cmdlet adds a resource type to a failover cluster, and specifies information such as the dynamic-link library (DLL) to use with that resource
type.


The failover cluster software provides Resource DLL files for the most common types of resources. Using the application programming interface (API) provided in the Microsoft
Platform Software Development Kit (SDK), other vendors can add support for other resource types.


Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=321016
Get-ClusterResourceType
Remove-ClusterResourceType

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Add-ClusterResourceType -Name ResType3 –InputObject C:\res3.dll
Name DisplayName
---- -----------
ResType3 ResType3



This example creates ResType3 on the local cluster using res3.dll located on the provided resource DLL file path C:\.




EXAMPLE 2

PS C:\>Add-ClusterResourceType –Name ResType4 -InputObject C:\res4.dll -DisplayName "Resource Type 4"
Name DisplayName
---- -----------
ResType4 Resource Type 4



This example creates ResType4 on the local cluster using res4.dll located on the provided resource DLL file path C:\. The display name of the resource type is Resource Type
4.