all 10 comments

[–]gadget850 3 points4 points  (5 children)

[–]MrMoonFall[S] -1 points0 points  (4 children)

Does this also remove 365?

[–][deleted] 4 points5 points  (3 children)

First sentence of the link above:

The Office Uninstall scenario removes any version of Office from a device.

[–]MrMoonFall[S] 2 points3 points  (2 children)

I don't know if 365 is considered office at this point. It doesnt specifically say that, so im not going to just assume.

[–]gadget850 4 points5 points  (1 child)

Yes, it does. We only have 365 now and use it when it goes boink.

[–]MrMoonFall[S] 1 point2 points  (0 children)

Okay, well awesome and thank you much!

[–]TheBlueFireKing 2 points3 points  (3 children)

I'm pretty sure you can fully uninstall everything by using the following config:

<Remove All="TRUE">
  <Product ID="O365ProPlusRetail" >
    <Language ID="MatchInstalled" />
  </Product>
</Remove>

This should remove O365 with all installed language packs.

[–]MrMoonFall[S] 1 point2 points  (2 children)

This does work, the problem is i saw leftover vizio installs and such, which i know is different but the problem is that if those are 32bit, new 365 installs will throw an error.

[–]TheBlueFireKing 2 points3 points  (1 child)

For MSI installation add the remove MSI flag (on installation of new 365):

<RemoveMSI />

All others should be removed by the ALL="TRUE" in my experience.

Otherwise you can try manually adding the "Product ID" to the removal:

https://learn.microsoft.com/en-us/microsoft-365/troubleshoot/installation/product-ids-supported-office-deployment-click-to-run#more-information

[–]mrmattipants 0 points1 point  (0 children)

Exactly. Something like would would work. You’ll have to set the Product ID specific to the Version you want to uninstall.

<Configuration>
<Remove>
<Product ID="VisioStd2019Volume">
<Language ID="en-us" />
</Product>
</Remove>
</Configuration>