Uninstall individual Office 2016 programs

29

5

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?

Steve

Posted 2015-09-25T07:42:48.803

Reputation: 499

Is it the preview? – h0ch5tr4355 – 2015-09-25T07:53:34.700

No. It's the full version – Steve – 2015-09-25T07:54:33.197

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. – h0ch5tr4355 – 2015-09-25T08:06:05.693

1There is NO way if you are running a Click-To-Run version – pun – 2015-09-25T08:07:03.217

@h0ch5tr4355 - It isn't possible; Alright it is possible it involves a hacked together solution; The Office installer was changed with Office 2016. – Ramhound – 2015-09-25T10:38:13.877

That's a pity, but the programs are linked so closely that it probably became impossible for Microsoft to separate them strictly. – h0ch5tr4355 – 2015-09-25T10:41:16.650

Can you show me the hacked solution? – Steve – 2015-09-25T16:46:54.513

@The_IT_Guy_You_Don't_Like Is there another way to install it? – Steve – 2015-09-25T16:51:13.183

@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 – pun – 2015-09-26T07:01:03.440

Answers

12

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"

osk2

Posted 2015-09-25T07:42:48.803

Reputation: 121

1

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 https://superuser.com/questions/980032/office-2016-advanced-setup/1239625

– Rowan Hawkins – 2017-08-10T16:21:10.143

9

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).

Terry

Posted 2015-09-25T07:42:48.803

Reputation: 1 379