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.
Stefan Salzmann 690841708a
„README.md“ ändern
1 month ago
README.md „README.md“ ändern 1 month ago

README.md

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

Microsoft Teams Meeting Addin

Das Addin für Outlook muss auf dem RDS speziell 4. (Due to UAC issues) From another computer navigate to the c$ administrative share of your Server 2019 session host and locate the "c:\program files\windowsapps\MSTeams_#####.###.####.####x64__iwekyb3d8bbwe" folder (Example: \rdsh01\c$\program files\windowsapps\MSTeams#####.###.####.####_x64__iwekyb3d8bbwe) 5. copy the "MicrosoftTeamsMeetingAddinInstaller.msi" file to the c:\ drive somewhere on the RDSH server 6. Run the msi file acquired in step 5 on the RDSH server and install for everyone (administrative command prompt and in install mode). Also install path should be to C:\program files (x86)\Microsoft\TeamsMeetingAdd-inn#.##.#####\ (with # symbols being version number) 7. Find section titled “Outlook presence integration with New Teams in Windows Server 2019” from the article https://learn.microsoft.com/en-us/microsoftteams/new-teams-vdi-requirements-deploy?fbclid=IwAR3hGgEa-B4U_o7uveN1ZL9BV-NkR6vZqh5j-tGm9d4Wg0YA17eVJaBalm8 8. Click on the link in step 4 of this section to download the presence integration installer 9. If the server is up to date on all cumulative updates you should only need to open the local group policy on the machine by opening gpedit.msc from a run dialog box and enabling the policy at the following location "Computer Configuration\Administrative Templates\KB5035849 240209_02051 Feature Preview\Windows 10, version 1809 and Windows Server 2019" 10. Don't worry about the ALLUSERS switch and running from a command line. Run from GUI after putting server into install mode. Run the installer acquired in step 8 and choose to install for "Everyone" or "all users" in the dialog screen when installing. 11. restart the RDSH server