1. 程式人生 > >Lync 項目經驗-29-批量-啟用用戶-啟用企業語音-設置分機號(項目中)

Lync 項目經驗-29-批量-啟用用戶-啟用企業語音-設置分機號(項目中)

服務器 Lync


1.啟用用戶

#測試用戶

Enable-CsUser -Identity SFBDemo01 -RegistrarPool SFBFEPool01.i-x-Cloud.com -SipAddress "sip:[email protected]"

Enable-CsUser -Identity SFBDemo02 -RegistrarPool SFBFEPool01.i-x-Cloud.com -SipAddress "sip:[email protected]"

Enable-CsUser -Identity SFBDemo03 -RegistrarPool SFBFEPool01.i-x-Cloud.com -SipAddress "sip:[email protected]"

Enable-CsUser -Identity SFBDemo04 -RegistrarPool SFBFEPool01.i-x-Cloud.com -SipAddress "sip:[email protected]"

Enable-CsUser -Identity SFBDemo05 -RegistrarPool SFBFEPool01.i-x-Cloud.com -SipAddress "sip:[email protected]"

#實際用戶

Enable-CsUser -Identity I-X-CLOUD\10810058 -RegistrarPool SFBFEPool01.i-x-Cloud.com -SipAddress "sip:[email protected]"

2.啟用企業語音

#按用戶

Set-CsUser -Identity SFBDemo01 -EnterpriseVoiceEnabled $True

#按OU

Get-CsUser -OU "ou=I-x-Cloud,dc=i-x-Cloud,dc=com" | Set-CsUser -EnterpriseVoiceEnabled $True

3.設置分機號

Set-CsUser -Identity SFBDemo01 -LineURI tel:+28001

Set-CsUser -Identity SFBDemo02 -LineURI tel:+28002

Set-CsUser -Identity SFBDemo03 -LineURI tel:+28003

Set-CsUser -Identity SFBDemo04 -LineURI tel:+28004

Set-CsUser -Identity SFBDemo05 -LineURI tel:+28005

Set-CsUser -Identity SFBDemo01 -LineURI 'TEL:+862032511771;ext=28001'

Set-CsUser -Identity SFBDemo03 -LineURI 'TEL:+862032511773;ext=28003'

Set-CsUser -Identity SFBDemo05 -LineURI 'TEL:+862032511775;ext=28005'

Set-CsUser -Identity 'CN= A 10111731,OU=Users,OU=NingXi,OU=I-x-Cloud,DC=i-x-Cloud,DC=com' -LineURI 'TEL:+862082962898;ext=20197'

PS C:\> Get-CsUser -Identity 'SFBDemo*' | Select DisplayName,LineURI

DisplayName LineURI

----------- -------

SFBDemo01 TEL:+862032511771;ext=28001

SFBDemo02 tel:+28002

SFBDemo03 TEL:+862032511773;ext=28003

SFBDemo04 tel:+28004

SFBDemo05 TEL:+862032511775;ext=28005

4.設置撥號計劃

Grant-CsDialPlan -Identity SFBDemo01 -PolicyName 'DialPlan01_GZ.i-x-Cloud.com'

Grant-CsDialPlan -Identity SFBDemo02 -PolicyName 'DialPlan01_GZ.i-x-Cloud.com'

Grant-CsDialPlan -Identity SFBDemo03 -PolicyName 'DialPlan01_GZ.i-x-Cloud.com'

Grant-CsDialPlan -Identity SFBDemo04 -PolicyName 'DialPlan01_GZ.i-x-Cloud.com'

Grant-CsDialPlan -Identity SFBDemo05 -PolicyName 'DialPlan01_GZ.i-x-Cloud.com'

Get-CsUser -OU "ou=I-x-Cloud,dc=i-x-Cloud,dc=com" | Grant-CsDialPlan -PolicyName 'DialPlan01_GZ.i-x-Cloud.com'

Lync 項目經驗-29-批量-啟用用戶-啟用企業語音-設置分機號(項目中)