Answers for "clear teams cache powershell"

0

clear teams cache powershell

#Clears cache for all users
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}
Posted by: Guest on July-20-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language