Skip to content

Instantly share code, notes, and snippets.

@ebibibi
Created July 21, 2021 05:22
Show Gist options
  • Select an option

  • Save ebibibi/65ff693f32d3d9b24405cc79dd4bb580 to your computer and use it in GitHub Desktop.

Select an option

Save ebibibi/65ff693f32d3d9b24405cc79dd4bb580 to your computer and use it in GitHub Desktop.
Write-Host "Outlookを終了します。"
taskkill /IM outlook.exe
Write-Host "Teamsを終了します。"
Get-Process | Where-Object {$_.ProcessName -eq "Teams"} | Stop-Process
Write-Host "5秒待ちます"
Start-Sleep 5
Write-Host "Teamsのキャッシュファイルを削除します。"
cd (Get-ChildItem env: | Where-Object {$_.Name -eq 'appdata'}).value
cd Microsoft
Remove-Item Teams -Recurse -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment