验证您的移动功能部署
上一次修改主题: 2011-11-03
部署 Microsoft Lync Server 2010 Mobility Service 和 Microsoft Lync Server 2010 自动发现服务后,运行测试事务来验证您的部署是否正常工作。您可以运行 Test-CsMcxP2PIM 来测试在两个用户之间发送即时消息的情况。若要使用此测试事务,您需要两个实际或测试用户及其完整凭据。
测试个人到个人即时消息 (IM)
以 CsAdministrator 角色的成员身份登录任何安装了 Lync Server 命令行管理程序和 Ocscore 的计算机。
启动 Lync Server 命令行管理程序:依次单击“开始”、“所有程序”和“Microsoft Lync Server 2010”,然后单击“Lync Server 命令行管理程序”。
在命令行中键入:
Test-CsMcxP2PIM -TargetFqdn <FQDN of Front End pool> -SenderSipAddress sip:<SIP address of test user 1> -SenderCredential <test user 1 credentials> -ReceiverSipAddress sip:<SIP address of test user 2> -ReceiverCredential <test user 2 credentials> -v
您可以在脚本中设置凭据并将这些凭据传送给测试 cmdlet。例如:
$passwd1 = ConvertTo-SecureString "Password01" -AsPlainText -Force $passwd2 = ConvertTo-SecureString "Password02" -AsPlainText -Force $tuc1 = New-Object Management.Automation.PSCredential("contoso\UserName1", $passwd1) $tuc2 = New-Object Management.Automation.PSCredential("contoso\UserName2", $passwd2) Test-CsMcxP2PIM -TargetFqdn pool01.contoso.com -SenderSipAddress sip:UserName1@contoso.com -SenderCredential $tuc1 -ReceiverSipAddress sip:UserName2@contoso.com -ReceiverCredential $tuc2 -v