1. Home
  2. Knowledge Base
  3. Microsoft
  4. Microsoft Teams
  5. Clear Microsoft Teams cache once – Intune

Clear Microsoft Teams cache once – Intune

This is what the boot loop looks like, an error is not displayed even after waiting 20 minutes:

Clear team cache manually

You can manually clear the team cache with a one-liner in PowerShell on the device for the current user and with admin privileges for all users on the device.

# 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 }

# Current User
Stop-Process -Name Teams; Get-ChildItem -Path "$env:USERPROFILE\AppData\Roaming\Microsoft\Teams" -Directory | Where{$_ -in ('Cache','databases','blob_storage','IndexedDB','GPUCache','Local Storage','tmp','')} | ForEach{Remove-Item $_.FullName -Recurse -Force}

Dieser Beitrag ist auch verfügbar auf: Deutsch (German)

Was this article helpful?

Related Articles

Submit a Comment

Your email address will not be published. Required fields are marked *

Published on - 12. Aug 2022
Modified on - 27. Mar 2024
Views - 237
Likes - 0

Do you need help?

Kontaktiere uns gerne :-)
Contact Support
Skip to content