Forum Discussion
Tanya Denton
Sep 02, 2020Iron Contributor
New Meetings Experience appeared then disappeared!
Hi has anyone experienced the following > Users received the New meeting experience update (i.e. in Settings switch it on), and all have been using it for a few weeks. In the last few days, the Sett...
- Sep 14, 2020
Tanya Denton Hi Tanya, did you hear "the latest" that the new meeting experience isn't compatible with Teams call queue. Could that explain the issue for you as well?
TimK_010101
Sep 09, 2020Copper Contributor
Tanya Denton I had this happen to me recently and I think what I did was closed Teams, cleared the cache, then reopened. Have you given that a shot?
For clearing the cache I copied some code from here and ended up with this PowerShell script that's mighty handy.
$path = $env:APPDATA + "\Microsoft\Teams\*"
Stop-Process -Name Teams -Force -ErrorAction SilentlyContinue; Get-ChildItem $path -directory | Where name -in ('application cache','blob_storage','databases','GPUcache','IndexedDB','Local Storage','tmp') | ForEach{Remove-Item $_.FullName -Recurse -Force}
$path = $env:LOCALAPPDATA + "\Microsoft\Teams\current\Teams.exe"
Start -FilePath $path