Enable Enterprise Voice for all users in Lync Server 2010/2013

Enable Enterprise Voice for all users in Lync Server 2010/2013
Dont know, how is it going in your companies, but our users can call to any direction if they need it. In case of some issues, I can always apply restrictive policy.

By default, when we add a user into Lync system, Enterprise Voice is disabled. Here is my way, how I solve this problem. You can also add this script to the script that enables new users in Lync.
import-module Lync
Get-CsUser -filter {EnterpriseVoiceEnabled -ne $true} | Set-CsUser -EnterpriseVoiceEnabled $true

There is nothing special - just pass all over the users in Lync and set "-EnterpriseVoiceEnabled" to $true.
Its possible that you disable Enterprise Voice for some users for any case. And you dont want to lose this setting. We can change a script a liitle bit ... 
import-module Lync
Get-CsUser -filter {EnterpriseVoiceEnabled -eq $null} | Set-CsUser -EnterpriseVoiceEnabled $true

script (en), lync (ru), lync 2013 (ru), lync 2010 (ru)

  • Hits: 7330
Add comment

Related Articles