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.”
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"
Then run the deploy command again:
Dism /Online /Add-ProvisionedAppxPackage /PackagePath:<c:\path\MSTeams-x64.msix> /SkipLicense
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.
No comments to display
No comments to display