Skype for Business オンライン コネクタから Teams PowerShell モジュールへの移行

Teams PowerShell モジュールには、PowerShell コマンド ラインから直接 Teams を管理するためのコマンドレットの完全なセットが用意されています。 管理者は、Teams の管理に Skype For Business Online コネクタを必要としません。

注意

Teams 管理者は、メッセージ センターの投稿 (MC244740、2021 年 3 月 16 日付) を通じて通知されました。MC250940(2021 年 4 月 16 日付)

移行方法

Skype for Business オンライン コネクタから Teams PowerShell モジュールへの移行は簡単で簡単です。 次の手順では、この移行を行う方法について説明します。

  1. 最新の Teams PowerShell モジュールをインストールします。 手順については、「 Microsoft Teams PowerShell のインストール」を参照してください。

  2. Skype For Business Online コネクタをアンインストールします。 アンインストールするには、コントロール パネルで [プログラムと機能] に移動し、[Skype for Business オンライン]、[Windows PowerShell モジュール] の順に選択し、[アンインストール] を選択します

  3. PowerShell スクリプトで、 から参照 Import-Module されるモジュール名を変更します。

    SkypeOnlineConnector または LyncOnlineConnector を に設定します MicrosoftTeams

    たとえば、 を に変更 Import-Module -Name SkypeOnlineConnector します Import-Module -Name MicrosoftTeams

  4. Teams PowerShell モジュール 2.0 以降を使用する場合は、 をConnect-MicrosoftTeams参照New-CsOnlineSessionするスクリプトを更新します。 Import-PsSessionは、Skype for Business オンライン リモート PowerShell セッションを確立するために不要になりました。

       # When using the Skype for Business online connector
    
         # Establishing a session
         Import-Module SkypeOnlineConnector [LyncOnlineConnector]
         $credential = Get-Credential
         $SkypeSession = New-CsOnlineSession -Credential $credential
         Import-Session $SkypeSession
    
         # Example getting tenant details
         Get-csTenant
    
         # Disconnecting and closing the Session 
         Get-PsSession $SkypeSession | Remove-PsSession
    
       # When using Teams PowerShell Module 2.0 or later
    
         # Establishing a session
         Import-Module MicrosoftTeams
         $credential = Get-Credential
         Connect-MicrosoftTeams -Credential $credential
    
         # Example getting tenant details
         Get-csTenant
    
         # Disconnecting and closing the Session  
         Disconnect-MicrosoftTeams
    

Microsoft Teams PowerShell をインストールする

Teams PowerShell を使用して Teams を管理する

Teams PowerShell のリリース ノート

Microsoft Teams コマンドレット リファレンス

Skype for Business コマンドレット リファレンス