Retrieves global settings for call admission control (CAC), E911, and media bypass.
Syntax
Get-CsNetworkConfiguration [-Identity <XdsIdentity>] [-LocalStore <SwitchParameter>] |
Get-CsNetworkConfiguration [-Filter <String>] [-LocalStore <SwitchParameter>] |
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Identity |
Optional |
XdsIdentity |
This will always be Global. |
Filter |
Optional |
String |
Because there will only ever be one network configuration, you do not need this parameter in Communications Server 2010 |
LocalStore |
Optional |
SwitchParameter |
Retrieves the network configuration from the local replica of the Central Management database, rather than the Central Management database itself. |
Detailed Description
The network configuration object contains all the global settings for media bypass and for an entire CAC configuration within a Microsoft Communications Server 2010 deployment, including whether or not that configuration has been enabled. You can use this cmdlet to retrieve these configurations and settings. However, it’s recommended that you use cmdlets specific to the object type for retrieving most of the CAC configuration settings. For example, to retrieve the network regions, it will usually be easier to call Get-CsNetworkRegion than to call Get-CsNetworkConfiguration and then retrieve the NetworkRegions property of that configuration.
Return Types
Get-CsNetworkConfiguration returns an instance of the Microsoft.Rtc.Management.WriteableConfig.Settings.NetworkConfigurationSettings object.
Examples
-------------------------- Example 1 --------------------------
Copy Code | |
---|---|
Get-CsNetworkConfiguration |
This example retrieves the network configuration settings. These settings are defined only at the global scope, so only one item will be returned.
-------------------------- Example 2 --------------------------
Copy Code | |
---|---|
(Get-CsNetworkConfiguration).MediaBypassSettings |
There is one set of media bypass settings that applies globally. These settings are stored as part of the overall network configuration. This command first retrieves that configuration by calling Get-CsNetworkConfiguration, then retrieves the MediaBypassSettings property of the configuration.