New simplified automatic installation of Teams Meeting add-in for Outlook machine wide! (Completed)

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

#https://learn.microsoft.com/en-us/microsoftteams/new-teams-vdi-requirements-deploy#new-teams-and-outlook-integration

$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

3

Comments (1 comment)

1
Avatar
Carl Long

Ryan Clark  - Great post and I welcome everyone to join our 6.3 webinar as the amazing Dave Stephenson will be addressing this very topic!
https://info.getnerdio.com/nmmwebinars 

Please sign in to leave a comment.