Book Image

Lync Server Cookbook

Book Image

Lync Server Cookbook

Overview of this book

Table of Contents (19 chapters)
Lync Server Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

The Location Information LIS database


Creating a fully functional Enterprise Voice Enhanced E-9-1-1 configuration is a lot of work in large deployments. The LIS database is a database used to identify the location of a call coming from somewhere in the campus and going out to a certified emergency services provider.

Losing all of this information in the event of a system failure can be frustrating. As networks grow and change over time, this information will change as well. A regular backup of this information is highly recommended. This information is not included in the backup made with Export-CsConfiguration or Get-CsTopology.

Getting ready

PowerShell is the best tool to perform these tasks. This task requires an account that is a member of RTCUniversalServerAdmins.

How to do it…

The following are the steps to back up your LIS configuration:

  1. Start PowerShell in the elevated administrative mode.

  2. Run the following command:

    Export-CsLisConfiguration -FileName C:\Backup\LisConfig.bak
    
  3. Store the file...