PowerShell Logo Small

Get-NetworkSwitchGlobalData



This is the built-in help made by Microsoft for the command 'Get-NetworkSwitchGlobalData', 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 global data of a network switch.

SYNTAX


Get-NetworkSwitchGlobalData [-CimSession] <CimSession> [-InformationAction {SilentlyContinue | Stop | Continue | Inquire | Ignore | Suspend}] [-InformationVariable
[<System.String>]] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-NetworkSwitchGlobalData cmdlet gets global data of a network switch.



<

RELATED LINKS


REMARKS

<

Examples


Example 1: Get global data

PS C:\>$Session = New-CimSession -ComputerName "NetworkSwitch08"
PS C:\> Get-NetworkSwitchGlobalData -CimSession $Session



The first command creates a CimSession for a network switch, and then stores it in the $Session variable. For more information about CimSession objects, type Get-Help
New-CimSession.

The second command gets global data for the network switch NetworkSwitch08 by using the $Session object.