Gets connected cluster systems.
Syntax
Get-EmcClusterSystem [[-ID] <String>] [-Silent] [<CommonParameters>]
Get-EmcClusterSystem [-Silent] -ClusterDisk <WindowsBasicClusterDisk> [<CommonParameters>]
Description
Gets connected cluster systems. A cluster system can be added to ESI using the Get-EmcClusterSystemCredential and Connect-EmcSystem cmdlets.
Parameters
-ID <String>
Attributes: Optional, Position: 1
Specifies the cluster name, IP address, or global ID. Wildcards are permitted. It is a positional parameter (position = 1).
-Silent <SwitchParameter>
Attributes: Optional, Position: named
Turns off all the informational and verbose messages. However, it still displays errors.
-ClusterDisk <WindowsBasicClusterDisk>
Attributes: Required, Position: named
Specifies the ESI cluster disk object. You can get the object from the ESI cluster system object or by using the Get-EmcClusterDisk cmdlet. You can add the object to ESI by using the Get-EmcClusterSystemCredential and Connect-EmcSystem cmdlets.
<CommonParameters>
This cmdlet supports these common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, and OutVariable. Type get-help about_commonparameters for more details.
Examples
-------------- Example 1 --------------
C:\PS>$cBlob = Get-EmcClusterSystemCredential
C:\PS>$c = $cBlob | Connect-EmcSystem
C:\PS>Get-EmcClusterSystem
This example gets all the connected cluster systems.
-------------- Example 2 --------------
C:\PS>Get-EmcClusterSystem -Id mycluster*
C:\PS>Get-EmcClusterSystem -Id 10.x.y.*
C:\PS>Get-EmcClusterSystem 2cc75087-8ddf*
This example gets the cluster system based on the specified cluster name, IP address, or global ID. Wildcards are permitted. Because the ID parameter is positional, you can omit the name.
-------------- Example 3 --------------
C:\PS>$cd = Get-EmcClusterDisk -Silent
C:\PS>$cd[0].ClusterDiskResourceName
Cluster Disk 195783575
C:\PS>$cd[0] | Get-EmcClusterSystem
This example gets the cluster system based on the specified cluster disk.