Conversations involving multiple participants, allowing collaboration and information sharing in Teams
Since, apparently, Microsoft isn't going to fix this bug, I wrote an AutoHotKey script to re-launch Teams when the bug triggers.
SetTitleMatchMode, 2
^+!t::
Process, Close, Teams.exe
Process, WaitClose, Teams.exe, 5000
if ErrorLevel {
MsgBox, The process did not close within 5 seconds.
} else {
Run, C:\Users\your_user_id\AppData\Local\Microsoft\Teams\current\Teams.exe
Loop, 10 {
WinActivate, Teams
WinWaitActive, Teams
WinMaximize, Teams
WinGet, teams_maximized, MinMax, Teams,, Loading
if (teams_maximized == 1)
Break
Sleep, 1000
}
}
Return