[This is preliminary documentation and is subject to change. Blank topics are included as placeholders.]

Displays the Enhanced 911 (E9-1-1) Location Information Server (LIS) configuration in XML format.

Syntax

Debug-CsLisConfiguration [-Force <SwitchParameter>] [-LocalStore <SwitchParameter>]

Parameters

Parameter Required Type Description

Force

Optional

SwitchParameter

LocalStore

Optional

SwitchParameter

This parameter has no effect on this cmdlet.

Detailed Description

The LIS configuration for an Enterprise Voice E9-1-1 implementation is stored in compressed format. This cmdlet un-compresses the configuration and displays it in XML format. This can be useful by making it quicker to debug issues with a configuration.

This cmdlet retrieves the location information from the Central Management database. When this information is created, it is stored in the location database; it does not move to the Central Management database until it is published with the Publish-CsLisConfiguration cmdlet. If the location information has not been published (or has been un-published with the Unpublish-CsLisConfiguration cmdlet), Debug-CsLisConfiguration will not return anything.

Return Types

Returns an object of type System.Management.Automation.PSCustomObject.

Examples

-------------------------- Example 1 --------------------------

Copy Code
Debug-CsLisConfiguration | Format-Table -Wrap

Running this command will display the entire LIS configuration to the Communications Server Management Shell window in XML format. By default, the output of Debug-CsLisConfiguration is displayed on one line, with an ellipsis (…) at the end of the line representing the fact that there’s more than one line of data. To view the entire configuration on screen, in this example we pipe the output to the Format-Table cmdlet, specifying the Wrap parameter, to display the full output wrapped to fit in the display window.