Uninstall individual Office 2016 programs

69,049

Solution 1

Seems you installed Office in Click-to-Run way, unfortunately it's not possible to select what you want to install by default

But you can try changing installation config to achieve this

As the answer in this post in Office Tech, you can add something like below in xml config to skip applications you don't want

<ExcludeApp ID= "Access" />

If you want only Word, then exclude all but Word in config like

<Configuration>
  <Add OfficeClientEdition="64" >
    <Product ID="ProPlusRetail">
      <Language ID="en-us"/>
      <ExcludeApp ID= "Access" />
      <ExcludeApp ID= "Lync" />
      <ExcludeApp ID= "Outlook" />
      <ExcludeApp ID= "OneDrive" />
      <ExcludeApp ID= "OneNote" />
      <ExcludeApp ID= "Groove" />
      <ExcludeApp ID= "Publisher" />
      <ExcludeApp ID= "SharePointDesigner" />
      <ExcludeApp ID= "PowerPoint" />
      <ExcludeApp ID= "Excel" />
      <ExcludeApp ID= "Visio" />
    </Product>
  </Add>
</Configuration>

After editing, save and run installer

Full Office product list from Microsoft TechNet

ID="Access"
ID="Excel"
ID="Groove"
ID="InfoPath"
ID="Lync"
ID="OneDrive"
ID="OneNote"
ID="Outlook"
ID="PowerPoint"
ID="Publisher"
ID="SharePointDesigner"
ID="Visio"
ID="Word"

Solution 2

For starters, out-of-the-box, Microsoft doesn't support individual installation of office 2016 applications. See this quote from their blog and this post:

  1. Can I install a subset of the Office 2016 applications?

No, the ability to selectively install individual applications is not available with Office 2016. The vast majority of customers prefer the full installation of all of the Office apps so they are assured that they have the ability to open, view and edit any document they may need. We will continue to evaluate feedback on this topic.

If you're interested in a work-around, all I've found was this post, but results aren't verified. Apparently, MS is now providing administrators with a deployment tool for click-to-run installations. If you plan on trying this, I'm curious to see if it works. If it doesn't, it's still possible to supply MS with feedback concerning this, it wouldn't be the first time they change policies after massive feedback from the community (see how onedrive for businesses is evolving at the moment).

Share:
69,049

Related videos on Youtube

Steve
Author by

Steve

Updated on September 18, 2022

Comments

  • Steve
    Steve over 1 year

    I installed Office Professional Plus 2016 on my windows 10 system. When I installed it, it didn't give me an option of which office programs to install, like it did in the 2010 version (ex. word, excel etc.). The only program I will use is office word. I don't want all the other programs.

    Is there a way, or "hack" to get rid of all the programs besides for office word?

    • h0ch5tr4355
      h0ch5tr4355 over 8 years
      Is it the preview?
    • Steve
      Steve over 8 years
      No. It's the full version
    • h0ch5tr4355
      h0ch5tr4355 over 8 years
      I just know, that it wasn't possible in the preview, but I think it should be possible in the full version. So it was in the earlier versions: When you have an installer, you could choose customize.
    • clhy
      clhy over 8 years
      There is NO way if you are running a Click-To-Run version
    • Ramhound
      Ramhound over 8 years
      @h0ch5tr4355 - It isn't possible; Alright it is possible it involves a hacked together solution; The Office installer was changed with Office 2016.
    • h0ch5tr4355
      h0ch5tr4355 over 8 years
      That's a pity, but the programs are linked so closely that it probably became impossible for Microsoft to separate them strictly.
    • Steve
      Steve over 8 years
      Can you show me the hacked solution?
    • Steve
      Steve over 8 years
      @The_IT_Guy_You_Don't_Like Is there another way to install it?
    • clhy
      clhy over 8 years
      @Jessica I haven't found a hacked way yet & seems quite difficult to do that as everything is streamed in this method of installation. It would have been possible if there was a MSI version but i haven't seen that either
  • Rowan Hawkins
    Rowan Hawkins over 6 years
    Its also all detailed within this Stack post which also covers where to get the Config tool, how to use it and an online Editor to build the elements of the custom configuration.xml superuser.com/questions/980032/office-2016-advanced-setup/…