diff --git a/README.md b/README.md index 2201551..cb4c86c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,25 @@ -# Teams-on-RDS-2019 +# 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 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. + +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 +``` \ No newline at end of file