PowerShell Logo Small

Get-ClusterParameter



This is the built-in help made by Microsoft for the command 'Get-ClusterParameter', 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

Gets detailed information about an object in a failover cluster, such as a cluster resource.

SYNTAX


Get-ClusterParameter [[-Name] <StringCollection>] [-Cluster <String>] [-InputObject <PSObject>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ClusterParameter cmdlet gets detailed information about an object in a failover cluster, such as a cluster resource. This cmdlet is used to manage private properties
for a cluster object. To get and set common properties for a cluster object, use the appropriate Get-Cluster* cmdlet to get the cluster object of interest and then set the
property of interest on that cluster object directly.


The type of detailed information you can obtain with this cmdlet depends on the cmdlet you combine with it. For example:

-- If you use this cmdlet with the Get-ClusterResource cmdlet for a disk resource, then you can obtain the disk signature or GUID of a disk and information about whether
maintenance is turned on for that disk.

-- If you use this cmdlet with the Get-ClusterResource cmdlet for a Network Name resource, then you can obtain DNS-related information about the resource.

-- If you use this cmdlet with the Get-ClusterResource cmdlet for an IP address resource, then you can obtain DHCP-related information about the IP Address resource.

-- If you use this cmdlet with the Get-ClusterResource cmdlet for resources used by virtual machines, then you can obtain details about the settings for the virtual
machines.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?LinkId=321035
Set-ClusterParameter

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-ClusterResource –Name cluster1FS | Get-ClusterParameter
Object Name Value Type
------ ---- ----- ----
cluster1FS Name cluster1FS String
cluster1FS DnsName cluster1FS String
cluster1FS RemapPipeNames 0 UInt32
cluster1FS HostRecordTTL 1200 UInt32
cluster1FS RegisterAllProvi... 0 UInt32
cluster1FS PublishPTRRecords 0 UInt32
cluster1FS TimerCallbackAdd... 5 UInt32
cluster1FS ResourceData {1, 0, 0, 0...} ByteArray
cluster1FS StatusNetBIOS 0 UInt32
cluster1FS StatusDNS 0 UInt32
cluster1FS StatusKerberos 0 UInt32
cluster1FS CreatingDC \\DOMAIN12-DC-05... String
cluster1FS LastDNSUpdateTime 10/15/2008 9:50:... DateTime
cluster1FS ObjectGUID 8054680893fd5943... String



This example gets the parameters, including the detailed information, for the cluster resource named cluster1FS on the local cluster. The displayed parameters will vary
according to the type of resource being viewed.




EXAMPLE 2

PS C:\>Get-ClusterResource –Name cluster1FS | Get-ClusterParameter –Name HostRecordTTL
Object Name Value Type
------ ---- ----- ----
cluster1FS HostRecordTTL 1200 UInt32



This example displays the HostRecordTTL parameter for the cluster resource named cluster1FS on the local cluster, if that parameter is applicable to cluster1FS.