PowerShell Logo Small

Get-ClusterNetwork



This is the built-in help made by Microsoft for the command 'Get-ClusterNetwork', 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 information about one or more networks in a failover cluster.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Get-ClusterNetwork cmdlet gets information about one or more networks in a failover cluster. A failover cluster requires network connectivity among nodes and between
clients and nodes.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=321031
Get-ClusterNetworkInterface

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-ClusterNetwork
Name State
---- -----
Cluster Network 1 Up
Cluster Network 2 Up
Cluster Network 3 Up



This example gets information about the networks used by the local cluster.




Example 2

PS C:\>(Get-ClusterNetwork –Name "Cluster Network 1").Name = "Cluster Network 3"



This example renames Cluster Network 1 to Cluster Network 3.