Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

remove Teams Machine-wide Installer

I have tried several different approaches to removing Teams Machine-wide Installer. Has anyone found a successful way to do this. Thanks for any help.

0

Comments

2 comments
Date Votes
  • Command step run as an administrator:

    MsiExec.exe /qn /norestart /X{39AF0813-FA7B-4860-ADBE-93B9B214B914}

    Works for us. Your GUID may vary, but will be found in the uninstall field of the application in PDQ inventory.

    And command step run as logged in user, to uninstall the user installed version, if applicable.

    "C:\Users%username%\AppData\Local\Microsoft\Teams\Update.exe" --uninstall -s

    1
  • Grant Gischer​​​​ This worked great for me, although GUID was different.

     

    If you need to locate GUID without PDQ Inventory, you can use Powershell:

    get-wmiobject Win32_Product | Format-Table IdentifyingNumber, Name, LocalPackage -AutoSize

    0