Created
July 21, 2021 05:22
-
-
Save ebibibi/65ff693f32d3d9b24405cc79dd4bb580 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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