Created
August 12, 2022 17:37
-
-
Save rheid/955c39bdc5c842942ad37eb95527d6b8 to your computer and use it in GitHub Desktop.
PowerShell Basics: How to Delete Microsoft Teams Cache for All Users
This file contains 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
Get-ChildItem "C:\Users\*\AppData\Roaming\Microsoft\Teams\*" -directory | Where name -in ('application cache','blob storage','databases','GPUcache','IndexedDB','Local Storage','tmp') | ForEach{Remove-Item $_.FullName -Recurse -Force -WhatIf} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment