Lync Server 2013 でのモビリティ展開の確認

 

トピック最終更新日時: 2013-02-12

Some information in this topic pertains to Cumulative Updates for Lync Server 2013: February 2013.

Lync Server モビリティ サービスと Lync Server 自動検出サービスを展開した後、テスト トランザクションを実行して、展開が正しく動作することを確認します。 Test-CsUcwaConference を実行して、Lync 2013 Mobile クライアントを使用して会議で作成、参加、通信する 2 人のユーザーの能力をテストできます。 このテスト トランザクションを使用するには、2 人の実際のユーザーまたはテスト ユーザーとその完全な資格情報が必要です。

Test-CsMcxP2PIM を使用して、Lync 2010 Mobile を使用している 2 人のユーザー間でインスタント メッセージを送信するテストを行います。 Test-CsUcwaConference と同様に、2 人の実際のユーザーまたは 2 人の定義済みテスト ユーザーを使用します。

Lync 2013 Mobile クライアントの会議をテストするには

  1. Lync Server 管理シェル および Ocscore がインストールされている任意のコンピューターに CsAdministrator の役割のメンバーとしてログオンします。

  2. Lync Server 管理シェルを起動する: [スタート] をクリックし、[ すべてのプログラム] をクリックし、[ Microsoft Lync Server 2013] をクリックして、[ Lync Server 管理シェル] をクリックします。

  3. コマンド ラインで次を入力します。

    Test-CsUcwaConference -TargetFqdn <FQDN of Front End pool> -Authentication <TrustedServer | Negotiate | ClientCertificate | LiveID> -OrganizerSipAddress sip:<SIP address of test user 1> -OrganizerCredential <test user 1 credentials> -ParticipantSipAddress sip:<SIP address of test user 2> -ParticipantCredential <test user 2 credentials> -v
    

    スクリプトで資格情報を設定し、それらをテスト コマンドレットに渡すことができます。 次に例を示します。

    $passwd1 = ConvertTo-SecureString "Password01" -AsPlainText -Force
    $passwd2 = ConvertTo-SecureString "Password02" -AsPlainText -Force
    $testuser1 = New-Object Management.Automation.PSCredential("contoso\UserName1", $passwd1)
    $testuser2 = New-Object Management.Automation.PSCredential("contoso\UserName2", $passwd2)
    Test-CsUcwaConference -TargetFqdn pool01.contoso.com -Authentication Negotiate -OrganizerSipAddress sip:UserName1@contoso.com -OrganizerCredential $testuser1 -ParticipantSipAddress sip:UserName2@contoso.com -ParticipantCredential $testuser2 -v
    

Lync 2010 Mobile の個人間インスタント メッセージング (IM) をテストするには

  1. Lync Server 管理シェル および Ocscore がインストールされている任意のコンピューターに CsAdministrator の役割のメンバーとしてログオンします。

  2. Lync Server 管理シェルを起動する: [スタート] をクリックし、[ すべてのプログラム] をクリックし、[ Microsoft Lync Server 2013] をクリックして、[ Lync Server 管理シェル] をクリックします。

  3. コマンド ラインで次を入力します。

    Test-CsMcxP2PIM -TargetFqdn <FQDN of Front End pool> -Authentication <TrustedServer | Negotiate | ClientCertificate | LiveID> -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
    

    スクリプトで資格情報を設定し、それらをテスト コマンドレットに渡すことができます。 次に例を示します。

    $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 -Authentication Negotiate -SenderSipAddress sip:UserName1@contoso.com -SenderCredential $tuc1 -ReceiverSipAddress sip:UserName2@contoso.com -ReceiverCredential $tuc2 -v