Hello Nerdio community,
Microsoft has quietly released a much more simplified method, you can now add the --installTMA switch to the bootstrapper to install the teams meeting add machine wide! See below for an example:
https://learn.microsoft.com/en-us/microsoftteams/new-teams-vdi-requirements-deploy#deployment-method-for-non-persistent-environments-where-teams-auto-update-is-disabled
#download latest bootstrapper
$url = "https://go.microsoft.com/fwlink/?linkid=2243204&clcid=0x409"
$outpath = "$PSScriptRoot/teamsbootstrapper.exe"
Invoke-WebRequest -Uri $url -OutFile $outpath
#new MS method of installing teams outlook meeting add-in --installtma
$args = @("-p --installTMA")
Start-Process -Filepath "$PSScriptRoot/teamsbootstrapper.exe" -ArgumentList $args -NoNewWindow
#original difficult metho, also needed code to remove previous version
#Start-Process msiexec.exe /i "$((Get-ChildItem -Path 'C:\Program Files\WindowsApps' -Filter 'MSTeams*').FullName)\MicrosoftTeamsMeetingAddinInstaller.msi" Reboot=ReallySuppress ALLUSERS=1 TARGETDIR="C:\Programdata\Microsoft\TeamsMeetingAddin" /qn -Wait
Comments (1 comment)