e911 for Lync now available from IntelePeer

IntelePeer has recently begun offering Enhanced 911 (e911) services which diretly integrate with Lync Server 2010. Enhanced 911 allows the Lync Location Information Service to query your on-prem database (LIS database) for known locations and publish that information to the 911 service. In addition, when the information has been entered manually the 911 service is aware the address has not been verified and an operator assists the process.

The e911 service is an optional service that incurs an additional fee per month. Contact your IntelePeer sales representative today and extend your Lync services to include emergency. For those that are not using IntelePeer for their voice services, consider trialing their 30-day free/no obligation service and see how you can use VoIP services for a fraction of the cost of traditional PSTN (tell them BriComp sent you!).

http://beforeitsnews.com/press-releases/2012/09/intelepeer-expands-sip-trunking-service-with-nomadic-911-capabilities-for-microsoft-lync-users-2498262.html

Automating Lync 2010 Backups

The backup procedure for Microsoft Lync Server 2010 can be a little daunting as the process is extremely manual. When working with clients I typically deploy a scheduled task on a front-end server to help automate where possible. Backups of SQL (either with a SQL aware backup program or locally to disk) and of the Lync Share are still required as well but at least this covers the rest of the items.

The script is simple but two part – it starts in the command prompt and then calls out PowerShell modules and a PowerShell script to wrap things up. Some manual purging of previous backups is done first and then the current backups are performed (where necessary). The example uses the following variables:

  • Scripts are located in D:\Scripts
  • Backups are dumped to D:\Backups
  • Create Subfolders under Backups - Config, DBIMPEXP, LIS, RGS
  • Lync 2010 Resource Kit is local and installed to D:\Program Files\Microsoft Lync Server 2010\ResKit

LYNC_BACKUP.CMD

del D:\Backups\Config\config.xml
del D:\Backups\LIS\lis.xml
del D:\Backups\RGS\rgs.zip

"C:\Program Files\Common Files\Microsoft Lync Server 2010\Support\DBImpExp.exe" /hrxmlfile:D:\Backups\DBIMPEXP\Backup.xml /sqlserver:YOUR_SQL_SERVER_FQDN_and_INSTANCE

C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -command "cd $env:UserProfile; Import-Module 'C:\Program Files\Common Files\Microsoft Lync Server 2010\Modules\Lync\Lync.psd1'; Import-Module 'D:\Program Files\Microsoft Lync Server 2010\ResKit\RgsImportExport.ps1'; D:\Scripts\lync_backup.ps1

Exit

LYNC_BACKUP.PS1

Export-CsConfiguration -FileName D:\Backups\Config\config.xml;
Export-CsLisConfiguration -FileName D:\Backups\LIS\lis.xml;
Export-CsRgsConfiguration ApplicationServer:YOUR_POOL_SERVER_FQDN –FileName D:\Backups\RGS\rgs.zip;
exit

To automate the tasks create a Scheduled Task on a Lync Front-End server and schedule the task with a service account that has full NTFS permissions to the D:\Backups folder (and subfolders/files), is a member of the RTCUniversalServerAdmins group, and has Log on as a batch job rights.

Create Scheduled Task

  1. Launch from the Administrative Tools Task Scheduler
  2. Click the Task Scheduler Library and right-click to Create a Basic TaskName the task – Lync Backups (as an example)
  3. Create a schedule – this needs to mimic your local backup jobs so that the daily/weekly/etc. backups gather the backups you create (in the example we used Daily at midnight
  4. Select to Start a program and select the CMD file created above
  5. Finish the task creation and then double-click the task to edit it further
  6. Modify the Security
  7. Set to run whether user is logged in or not
  8. Set the user execution task to the Lync Service account created above
  9. Save the task entering the password when prompted and you are done

Testing of the task may be completed by right-clicking on the task and selecting Run. Don’t forget to backup the D:\Backups directory as well as the SQL databases and Lync share to gather all Lync info.

Additional References

http://technet.microsoft.com/en-us/library/hh202170