From 90fb2f7b9d73e1c6bb85ca372b0dfbc34b2ebc4e Mon Sep 17 00:00:00 2001 From: Stefan Salzmann Date: Tue, 24 Jun 2025 22:45:36 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=9EREADME.md=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 51 ++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 40 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 7daf247..fd80650 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,16 @@ Anleitung von: https://blackwoodit.co.uk/knowledge-base/solved-how-to-deploy-new 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 +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) ``` @@ -23,14 +28,38 @@ 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](https://techcommunity.microsoft.com/discussions/microsoftteams/new-teams--meeting-addin-missing-on-windows-server-2019-rdsh--autostart-issue/4086205) +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 ALLUSERS="1" +``` +**Installationspfad** = C:\program files (x86)\Microsoft\TeamsMeetingAdd-inn\#.##.#####\ (with # symbols being version number) + -## 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 \ No newline at end of file +Gemäss: [Outlook presence integration with New Teams in Windows Server 2019](https://learn.microsoft.com/en-us/microsoftteams/new-teams-vdi-requirements-deploy?fbclid=IwAR3hGgEa-B4U_o7uveN1ZL9BV-NkR6vZqh5j-tGm9d4Wg0YA17eVJaBalm8) + +1. Die Datei [Windows 10 1809 and Windows Server 2019 KB5035849 240209_02051 Feature Preview.msi](https://statics.teams.cdn.office.net/evergreen-assets/DesktopClient/Windows%2010%201809%20and%20Windows%20Server%202019%20KB5035849%20240209_02051%20Feature%20Preview.msi) herunterladen und mit folgendem Befehl installieren +``` +MSIEXEC /i ALLUSERS="1" +``` +2. 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. +3. Install KB5035849 March 2024 cumulative update from the Microsoft Update Catalog or WSUS for Enterprises. +4. Install machine-wide (ALLUSERS=1) the 'MSTeamsNativeUtility.msi'. +5. 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. \ No newline at end of file