Resets all the network configuration settings for a Microsoft Communications Server 2010 deployment to the default values. This essentially wipes out an entire call admission control (CAC) and E911 deployment.
Syntax
Remove-CsNetworkConfiguration -Identity <XdsIdentity> [-Confirm [<SwitchParameter>]] [-Force <SwitchParameter>] [-WhatIf [<SwitchParameter>]] |
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Identity |
Required |
XdsIdentity |
This will always be Global. |
Confirm |
Optional |
SwitchParameter |
Prompts you for confirmation before executing the command. This would be a very good parameter to use with this cmdlet. |
WhatIf |
Optional |
SwitchParameter |
Describes what would happen if you executed the command without actually executing the command. |
Detailed Description
WARNING: Running this cmdlet will wipe out an entire network configuration, including CAC, E911 regions and sites, and media bypass.
Return Types
This cmdlet does not return an object. It removes an object of type Microsoft.Rtc.Management.WriteableConfig.Settings.NetworkConfigurationSettings object.
Examples
-------------------------- Example 1 --------------------------
Copy Code | |
---|---|
Remove-CsNetworkConfiguration -Identity Global -Confirm |
This example removes all CAC, E911, location, and media bypass settings. This Confirm parameter is used so you’ll be prompted to verify you really want to do this before everything is deleted.