Skip to main content

How to deploy new teams on RDS Server 2019

Deploying Microsoft Teams on an RDS (Remote Desktop Services) Server 2019 can be a complex task, fraught with potential pitfalls and challenges. If you’re facing issues with the installation, configuration, or performance of Teams on your RDS server, you’re not alone. Let’s dive into the process and get your Teams up and running.

Download Teams msix

Download Teams Download Teams Here and put it in a folder. In my case I put it in C:\IT. I downloaded MSTeams-x64.msix

Powershell commands

Open powershell as admin and run this command:
(location and file name will need to be changed to match yours)

Dism /Online /Add-ProvisionedAppxPackage /PackagePath:<c:\it\MSTeams-x64.msix> /SkipLicense

If you get the error “To install this application you need either a Windows developer license or a sideloading-enabled system.”

teamserror-1024x241.webp

Enable Sideloading

To enable sideloading, run this command

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /f /v "AllowAllTrustedApps" /d "1"

teams11-1024x52.webp

Then run the deploy command again:

Dism /Online /Add-ProvisionedAppxPackage /PackagePath:<c:\path\MSTeams-x64.msix> /SkipLicense

image-1024x184.webp

New Teams on RDS

The New teams will be deployed and available to use. RDS users will be able to switch from Classic to New.