Microsoft has recently released a new WebView2-based version of MS Teams for Windows. Switching from the Electron engine to the WebView2 runtime significantly improved Teams’ performance (almost doubled) and reduced RAM usage (also almost doubled). However, when installing the new version of the Microsoft Teams client for Windows, the following errors may occur:
Something went wrong and we couldn't install the new Teams. Please try again later.
Or
We’re sorry - We’ve run into an issue.
Microsoft 365 admin can enable it try new teams Switch to specific team users.
To do this, you need to create a new policy under team update in the Microsoft Teams admin center, and then assign it to specific users. Another option is to enable the policy using the Teams PowerShell module:
Connect-MicrosoftTeams
Set-CsTeamsUpdateManagementPolicy -identity DefaultTeamsPolicy -UseNewTeamsClient UserChoice
If a policy is assigned but the switch is still unavailable, try clearing it %appdata%/Microsoft/Teams
folder.
Before you can install Teams, you need to make sure that the WebView2 runtime is installed on your computer. Open PowerShell console and run command:
Get-Package -name *WebView2* |ft -AutoSize
Name Version Source ProviderName ---- ------- ------ ------------ Microsoft Edge WebView2 Runtime 111.0.1661.62 Programs
The built-in WinGet package manager allows you to install WebView2 from the command line:
winget install --id=Microsoft.EdgeWebView2Runtime -e
Check that the following Group Policy options are disabled or not configured on Windows to prevent installation of the Teams MSIX package. Use gpresult or rsop.msc
command to obtain the resulting Group Policy setting on your computer. Check that the following options are not configured or disabled under Computer Configuration -> Windows Components -> Application Package Deployment:
- Prevent non-administrator users from installing packaged Windows apps
- Allow all trusted apps to be installed
These correspond to the following parameters in GPOs HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Appx
registry key:
- BlockNonAdminUserInstall
- allow all trusted apps
- allow developmentwithoutdev license
For example, if the value of BlockNonAdminUserInstall = 1replace it 0Then restart the classic Teams client and try to install the new Teams.
Leave a Comment