You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed desktop-config.json is written incompletely in "userAccounts" section resulting in Teams stuck on splash screen. In my case there are 5 nested levels in this section. But default Depth of ConvertTo-Json is 2.
Hi!
I noticed desktop-config.json is written incompletely in "userAccounts" section resulting in Teams stuck on splash screen. In my case there are 5 nested levels in this section. But default Depth of ConvertTo-Json is 2.
Fix:
$newContent = $json | ConvertTo-Json -Depth 8
I used 8 just as precautions for future changes in json structure, 5 will work just fine.
The text was updated successfully, but these errors were encountered: