Lync 2013 For Android And iphone ipad-部署!
大家都做!
烦事也有,一堆的命令行要复制,粘贴。
看得走神,还搞错。
部署完了,要测试吧?
测试之前,你先PS测试吧!(PS:测试前,指你使用Android,iphone,ipad测试之前!)
我下面有PS,来自微软,造福你们!
免得小伙伴们去找!
不用谢我,这我也用得着,下次照抄。
同时感谢Google的大力支持!
****************************************************************************************************************
步骤 0: 查询更新-For http://www.google.com
http://www.google.com.hk/#newwindow=1&q=Lync+Server+2013+KB&safe=strict
A.更新方法:Lync Server 2013 的更新
http://support.microsoft.com/kb/2809243/zh-cn
B.更新KB:Lync Server 2013 Cumulative Update KB 2809243
http://www.microsoft.com/en-us/download/details.aspx?id=36820
步骤 1: 安装累积更新
下载-LyncServerUpdateInstaller.exe-双击-安装。
步骤 2: 将应用的后端数据库更新
Lync Server 2013 标准版
Install-CsDatabase -ConfiguredDatabases -SqlServerFqdn SE.FQDN -Verbose
Install-CsDatabase -ConfiguredDatabases -SqlServerFqdn LyncFE01.contoso.com -Verbose
Lync Server 2013 企业版
Install-CsDatabase -ConfiguredDatabases -SqlServerFqdn FEBE.FQDN -Verbose
Install-CsDatabase -ConfiguredDatabases -SqlServerFqdn LyncBE01.contoso.com -Verbose
第 3 步:中央管理数据库应用更新
Install-CsDatabase -CentralManagementDatabase -SqlServerFqdn CMS.FQDN -SqlInstanceName DBInstanceName -Verbose
Install-CsDatabase -CentralManagementDatabase -SqlServerFqdn LyncBE01.contoso.com -Verbose
步骤 4: 启用移动服务
Enable-CsTopology
步骤 5: 启用统一的通信 Web API
%ProgramFiles%\Microsoft Lync Server 2013\Deployment\Bootstrapper.exe
CD 'C:\Program Files\Microsoft Lync Server 2013\Deployment'
.\Bootstrapper.exe
步骤 6: 验证您的移动功能部署
验证您的移动功能部署
http://technet.microsoft.com/zh-CN/library/hh690024.aspx
A.准备测试环境
$passwd1 = ConvertTo-SecureString "Aa123456" -AsPlainText -Force
$passwd2 = ConvertTo-SecureString "Aa123456" -AsPlainText -Force
$tuc1 = New-Object Management.Automation.PSCredential("Contoso\LyncDemo1", $passwd1)
$tuc2 = New-Object Management.Automation.PSCredential("Contoso\LyncDemo2", $passwd2)
B.测试 Lync 2010 Mobile 的个人到个人即时消息 (IM)
Test-CsMcxP2PIM -TargetFqdn LyncFE01.contoso.com -Authentication Negotiate -SenderSipAddress "sip:LyncDemo1@contoso.com" -SenderCredential $tuc1 -ReceiverSipAddress "sip:LyncDemo2@contoso.com" -ReceiverCredential $tuc2 –v
注意:成功,才能进行下一步操作。不成功,你就反复再反复,总会成功的。
C.测试 Lync 2013 Mobile 客户端的会议功能
Test-CsUcwaConference -TargetFqdn LyncFE01.contoso.com -Authentication Negotiate -OrganizerSipAddress sip:LyncDemo1@contoso.com -OrganizerCredential $tuc1 -ParticipantSipAddress sip:LyncDemo2@contoso.com -ParticipantCredential $tuc1 –v
注意:成功,才能进行下一步操作。不成功,你就反复再反复,总会成功的。