Home
Microsoft 365
Linux
Windows
Powershell
Cloud Computing
    Citrix Xendesktop
    Citrix XenApp
Useful links
About
  • Home
  • Microsoft 365
  • Linux
  • Windows
  • Powershell
  • Cloud Computing
    • Citrix Xendesktop
    • Citrix XenApp
  • Useful links
  • About
ajni.IT -
Microsoft 365•Windows Client OS•Windows Server

Microsoft Teams NEW Outlook Addin missing

June 5, 2024 by AJNI No Comments

As a follow up to my last article regarding Microsoft Teams NEW Addin missing in Outlook https://www.ajni.it/2024/03/microsoft-teams-lightweight-teams-meeting-addin-in-outlook-missing/, this script might help you if there are still some issues especially on Terminal Services/RDS 2019/2022.

This script registers Microsoft.Teams.Addin.Loader.dll as the current user, so it has to run at logon.

if (-not ($NewTeamsPackageVersion = (Get-AppxPackage -Name MSTeams).Version)) {
Write-Host "New Teams Package not found. Please install new Teams from https://aka.ms/GetTeams ."
exit 1
}
Write-Host "Found new Teams Version: $NewTeamsPackageVersion"

$TMAPath = "{0}\WINDOWSAPPS\MSTEAMS_{1}_X64__8WEKYB3D8BBWE\MICROSOFTTEAMSMEETINGADDININSTALLER.MSI" -f $env:programfiles,$NewTeamsPackageVersion
if (-not ($TMAVersion = (Get-AppLockerFileInformation -Path $TMAPath | Select-Object -ExpandProperty Publisher).BinaryVersion))
{
Write-Host "Teams Meeting Addin not found in $TMAPath."
exit 1
}
Write-Host "Found Teams Meeting Addin Version: $TMAVersion"

$TMAParam= '/s /n /i:user "C:\Program Files (x86)\Microsoft\TeamsMeetingAddin{0}\x86\Microsoft.Teams.AddinLoader.dll"' -f $TMAVersion
Start-Process "C:\windows\System32\regsvr32.exe" -ArgumentList $TMAParam
Reading time: 1 min
Powershell•Windows Client OS•Windows Server

Run program with arguments with PowerShell

May 17, 2024 by AJNI No Comments

A follow-up on the last post here is another way to run msiexec through PowerShell.

For example, here is how you can install OCS inventory agent with some parameters. OCS is an open source inventarization system.

Start-Process -FilePath .\OCS-Windows-Agent-Setup-x64.exe -ArgumentList ‘/S /NOSPLASH /NOW /SERVER=https://inventory.ajni.it//ocsinventory /TAG=”a” /SSL=0’

References:

https://www.ajni.it/2024/04/run-msiexec-transforms-with-powershell/

Reading time: 1 min
Powershell

Run msiexec transforms with PowerShell

April 17, 2024 by AJNI No Comments

It might be tricky to run msiexec mst files with PowerShell, because of the arguments that contain special characters. Here is a quick line that you might need next time you install programs with msiexec and PowerShell:

Start-Process -Wait “msiexec.exe” -ArgumentList ‘/i “path-to.msi” TRANSFORMS=”path-to-file.mst” /passive /norestart’

Reading time: 1 min
Cloud Computing•Microsoft 365•Powershell

Outlook 365 Online Meetings by default

April 11, 2024 by AJNI No Comments

With the newer versions of Outlook 365, when creating a new invitation, a Teams Call link is automatically added to every meeting, which might not be wanted by some customers. Here is a quick way to disable it for the whole tenant:

Connect-ExchangeOnline

Set-OrganizationConfig -OnlineMeetingsByDefaultEnabled $false

To check out if the settings has changed:

Get-OrganizationConfig | select OnlineMeetingsByDefaultEnabled

Reading time: 1 min
Cloud Computing•Windows Server

Install Microsoft Teams NEW for Windows Server 2019

April 5, 2024 by AJNI No Comments

Microsoft Teams NEW can now be installed on Server 2019. Server 2016 is unfortunately not supported.

Firstly, enable these GPOs:

Computer Configuration > Administrative Settings > Windows Components > App Package Deployment:

  • Allows development of Windows Store apps
  • Allo all trusted apps to install

Download the MSIX Package: https://go.microsoft.com/fwlink/?linkid=2196106

Install Package:

Dism /Online /Add-ProvisionedAppxPackage /PackagePath:”C:\temp\MSTeams-x64.msix“ /SkipLicense

Tip: If you are having issues adding the MSIX Package, try removing the package first:

Get-AppxPackage -AllUsers -Name MSTeams | Remove-AppxPackage -AllUsers

Install MS Edge Webview2, which is also needed:

Evergreen Standalone x64: https://developer.microsoft.com/de-de/microsoft-edge/webview2/?form=MA13LH#download

To install Meeting Addin for Outlook check out https://www.ajni.it/2024/03/microsoft-teams-lightweight-teams-meeting-addin-in-outlook-missing/

References:

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

Reading time: 1 min
Page 6 of 23« First...«5678»1020...Last »

Like what you are reading? Buy me a coffee.

Tip Of the Day

  • Add Alias to Windows Fileserver (Server 2019, 2022, 2025)

    1 day ago

Keep in touch

Oh hi there!
It’s nice to meet you.

Sign up to receive awesome content in your inbox, every month.

Check your inbox or spam folder to confirm your subscription.

Categories

  • AI & Deep Learning (1)
  • Azure (20)
  • Citrix XenApp (21)
  • Citrix Xendesktop (13)
  • Cloud Computing (40)
  • Coding (1)
  • Hyper-V (10)
  • Linux (8)
  • Microsoft 365 (26)
  • Powershell (21)
  • Security (7)
  • VDI (16)
  • Virtualization (21)
  • VMware (12)
  • Windows (21)
  • Windows Client OS (39)
  • Windows Server (92)

Archives

  • May 2025
  • April 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • January 2024
  • December 2023
  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • April 2023
  • March 2023
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • December 2020
  • November 2020
  • September 2020
  • August 2020
  • July 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • July 2019
  • June 2019
  • May 2019
  • April 2019
  • March 2019

ajni IT © 2019