PowerShell スクリプト サンプル - Teams の展開クリーン
このスクリプトを使用して Teams を削除します。 このスクリプトは Teams をアンインストールし、ユーザーの Teams フォルダーを削除します。 Teams がコンピューターにインストールされたユーザー プロファイルごとに、このスクリプトを実行します。
サンプル スクリプト
<#
.SYNOPSIS
This script uninstalls the Teams app and removes the Teams directory for a user.
.DESCRIPTION
Use this script to remove and clear the Teams app from a computer. Run this PowerShell script for each user profile in which Teams was installed on the computer. After you run this script for all user profiles, redeploy Teams.
#>
$TeamsPath = [System.IO.Path]::Combine($env:LOCALAPPDATA, 'Microsoft', 'Teams')
$TeamsUpdateExePath = [System.IO.Path]::Combine($TeamsPath, 'Update.exe')
try
{
if ([System.IO.File]::Exists($TeamsUpdateExePath)) {
Write-Host "Uninstalling Teams process"
# Uninstall app
$proc = Start-Process $TeamsUpdateExePath "-uninstall -s" -PassThru
$proc.WaitForExit()
}
Write-Host "Deleting Teams directory"
Remove-Item –path $TeamsPath -recurse
}
catch
{
Write-Output "Uninstall failed with exception $_.exception.message"
exit /b 1
}