📜  清除团队缓存 powershell - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:29.106000             🧑  作者: Mango

代码示例1
#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}