I’ve created a simple Powershell script to run daily to backup Lync configuration with the export-csconfiguration command: cd $env:UserProfile Import-Module ‘C:\Program Files\Common Files\Microsoft Lync Server 2010\Modules\Lync\Lync.psd1′ $filename = “d:\backup\{0:yyyy.MM.dd-HH.mm}-config.zip” -f (Get-Date) export-csconfiguration -Filename $filename -Force:$True For example, put the above code into a document called d:\backup\backup.ps1 and then create a scheduled task to execute the [...]