You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1.5 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

How to deploy new teams on RDS Server 2019

Anleitung von: https://blackwoodit.co.uk/knowledge-base/solved-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 youre facing issues with the installation, configuration, or performance of Teams on your RDS server, youre not alone. Lets dive into the process and get your Teams up and running.

Das Alte Teams kann auf dem Server bestehend bleiben vorallem damit das Outlook Termin AdOnn noch weiterhin funktoiniert

Download Teams msix

Download Teams (https://learn.microsoft.com/en-us/microsoftteams/new-teams-bulk-install-client) 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:\it\MSTeams-x64.msix /SkipLicense