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 90fb2f7b9d
„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 TeamsMeeting AddOn noch weiterhin funktoiniert.

Neu muss das Outlook TeamsMeeting AddOn separat installiert werden siehe unten

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

RDS Server in den Insatllationsmodus versetzten

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

RDS Server Insatllationsmodus beenden

TeamsMeetingAddOn Installieren

RDS Server in den Insatllationsmodus versetzten Gemäss: Installing Teams into a 2019 RDSH Session Host Environment Wir müssen das TeamsMeetingAddOn aus dem Programm Ordner hollen, dafür als Admin im Pfad:

c:\program files\windowsapps\MSTeams_#####.###.####.####_x64__iwekyb3d8bbwe\"

die Datei MicrosoftTeamsMeetingAddinInstaller.msi auf das C:\ kopieren Das MSI wie folgt installieren und dabei den unten definierten Installationspfad angeben

MSIEXEC /i <packagename> ALLUSERS="1"

Installationspfad = C:\program files (x86)\Microsoft\TeamsMeetingAdd-inn#.##.#####\ (with # symbols being version number)

Gemäss: Outlook presence integration with New Teams in Windows Server 2019

  1. Die Datei Windows 10 1809 and Windows Server 2019 KB5035849 240209_02051 Feature Preview.msi herunterladen und mit folgendem Befehl installieren
MSIEXEC /i <packagename> ALLUSERS="1"
  1. Open your Group Policy Editor. Navigate to Computer Configuration\Administrative Templates\KB5035849 240209_02051 Feature Preview\Windows 10, version 1809 and Windows Server 2019. Change the value of that Setting to Enabled.
  2. Install KB5035849 March 2024 cumulative update from the Microsoft Update Catalog or WSUS for Enterprises.
  3. Install machine-wide (ALLUSERS=1) the 'MSTeamsNativeUtility.msi'.
  4. Reboot the virtual machine.

RDS Server Insatllationsmodus beenden

Remove new Teams for all users

To uninstall and deprovision the new Teams for all users, use the following command:

./teamsbootstrapper -x

This command unregisters and deprovisions the new Teams for all users. Teams user profile/cache is deleted.