#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} Here is what the above code is Doing: 1. Get-ChildItem “C:\Users\*\AppData\Roaming\Microsoft\Teams\*” -directory – This is getting all the folders in the Teams folder for all users. 2. Where name -in (‘application cache’,’blob_storage’,’databases’,’GPUcache’,’IndexedDB’,’Local Storage’,’tmp’) –…