Google ワークスペース用に Microsoft Teams 会議アドオンを設定する

Microsoft Teams 会議アドオンを使用すると、Google 予定表ユーザーは、Google ワークスペースから直接 Microsoft Teams 会議をスケジュールして参加できます。 ユーザーは、ビデオ会議や電話会議、画面共有、会議チャット、デジタル ホワイトボードなどの Teams 会議機能にアクセスできます。 仕事、学校、生活を通じてより多くのことを一緒に行うために、つながりと整理を維持します。

テナント ユーザーがアプリにアクセスするには、Teams 管理者が Google ワークスペース用の Microsoft Teams 会議アドオンを有効にする必要があります。

Azure portalで Google ワークスペースの Microsoft Teams 会議アドオンを有効または無効にする

テナント管理者は、Azure portalを使用して、organizationの管理者アカウントから Google ワークスペースの Microsoft Teams 会議アドオンを有効または無効にすることができます。

アドオンは既定で有効になっています。

  1. Azure portalにサインインします。

  2. [エンタープライズ アプリケーション] [すべてのアプリケーション] の>選択。

  3. Google ワークスペースの Microsoft Teams 会議アドオンを検索します

    すべてのアプリケーションを表示するAzure portal。

  4. [ はい] を選択します

    google ワークスペースのプロパティを表示するAzure portal。

  5. (省略可能)アドオンを無効にするには、手順 4 で [はい] ではなく [いいえ] を選択します。

PowerShell を使用して Google ワークスペースの Microsoft Teams 会議アドオンを無効にする

Connect-MgGraph -Scopes "Application.ReadWrite.All"

$displayName = 'Microsoft Teams meeting add-on for Google Workspace'
$appId = '7969c887-ba98-48bb-8832-6c9239929d7c'

アプリのサービス プリンシパルが既に存在するかどうかを確認する

$ServicePrincipalUpdate =@{
  "accountEnabled" = "false"
}

$servicePrincipal = Get-MgServicePrincipal -Filter "appId eq '$appId'"
if ($servicePrincipal) {
    # Service principal exists already, disable it
    Update-MgServicePrincipal -ServicePrincipalId $servicePrincipal.Id -BodyParameter $ServicePrincipalUpdate
    Write-Host "Disabled existing Service Principal \n"
} else {
    # Service principal does not yet exist, create it and disable it at the same time
    $servicePrincipal = New-MgServicePrincipal -AppId $appId -DisplayName $displayName
    Update-MgServicePrincipal -ServicePrincipalId $servicePrincipal.Id -BodyParameter $ServicePrincipalUpdate
    Write-Host "Created and disabled the Service Principal \n"
}

詳細については、「 Microsoft Graph PowerShell を使用してサービス プリンシパルを作成する」を参照してください。

Google ワークスペースの Microsoft Teams 会議アドオンを削除する

手順については、Google のドキュメント 「Google ワークスペース Marketplace アプリを削除 する」を参照してください。

PowerShell を使用して Google ワークスペース用の Microsoft Teams 会議アドオンを作成する

Microsoft Teams 会議アドオンがテナントに存在しない場合は、PowerShell を使用して作成できます。

Connect-MgGraph -Scopes "Application.ReadWrite.All"

$displayName = 'Microsoft Teams meeting add-on for Google Workspace'
$appId = '7969c887-ba98-48bb-8832-6c9239929d7c'

# Check if a service principal already exists for the app
$servicePrincipal = Get-MgServicePrincipal -Filter "appId eq '$appId'"
if ($servicePrincipal) {
    # Service principal exists already
    Write-Host "The Service principal already exists"
} else {
    # Service principal does not yet exist, create it
    New-MgServicePrincipal -AppId $appId -DisplayName $displayName
    Write-Host "Created the Service Principal"
}