Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Microsoft Office / How to Install Only Specific Apps in Office 2021/2019 or Office 365

March 12, 2024 Microsoft OfficeWindows 10Windows Server 2019

How to Install Only Specific Apps in Office 2021/2019 or Office 365

When you install Microsoft Office 2021, 2019, 2016. or Microsoft 365 Apps for Business (ex-Office 365), you cannot choose to install individual Office apps, change a path to the installation directory, choose a language, or change any other settings. The full Office package is always installed (all apps from the Microsoft Office suite are installed at once). You cannot choose to install only certain apps or change any settings from the Office installer interface. Once installed, you can’t use the Change button in Programs and Features to uninstall Office programs that you don’t need.

Contents:
  • Configure Office Installation Options with ODT (Office Deployment Tool)
  • Custom Install Only Specific Apps in Office 2021/2019 or Office 365
  • Uninstall Individual Office App from Windows

office 365/2019 install all available apps at once

Office help on the Microsoft website states that you cannot selectively install individual apps in Office 2021/2019/2016/Microsoft 365 for Windows/Microsoft 365 Apps for business (link), and that it is recommended that you install individual Office apps from the Microsoft Store rather than using desktop apps. But it is not true.

Can I custom install Office apps?

With subscription and non-subscription versions of Office since 2013, you can’t custom select which Office apps you want to install. However, you can delete the shortcuts for the apps you don’t plan to use.

Custom install or change Microsoft Office apps

Configure Office Installation Options with ODT (Office Deployment Tool)

You can use the Microsoft Office Deployment Tool (ODT) to selectively install only certain Office apps (for example, only Word, Excel, or Outlook). Download and extract the Office Deployment Tool (https://www.microsoft.com/en-us/download/details.aspx?id=49117) to a local directory (for example, C:\ODT).

ODT allows you to install Microsoft Office programs on your computer according to the settings in the XML file that you have configured (typically used to deploy Office in a corporate environment). In the XML file, you can specify which Office 2021, Office 2019, or Office 365 applications you want to install or uninstall, add the localization language, and set various app settings.

ODT configuration XML files

The ODT folder already contains several examples of such XML files for Office 2021 (configuration-Office2021Enterprise.xml), Office 2019 (configuration-Office2019Enterprise.xml), and Office 365 (configuration-Office365-x86.xml, configuration-Office365-x64.xml). You can edit these files manually, but it is much more convenient to generate the required XML file with the custom Office installation settings on https://config.office.com/ (Office Customization Tool).

Suppose, I only want to install Word, Excel. and Outlook from the Office 2019 package.

  1. Click Create a new configuration;
  2. Select your architecture (32-bit) and product (Office Professional Pro Plus – Volume License); Create Office 2021 installation configuration
  3. From the list of programs, select only the ones you want to install. I have only selected Outlook, Word, and Excel;
    Note that Groove is OneDrive for Business, and Skype for Business is Lync.
    install specific Office apps
  4. Next, select the Office languages you want to install, the source of the installation files (this could be the Office CDN or a shared folder on your file server.), whether to remove previous MSI versions of Microsoft Office;
    Modern versions of Office 365, Office 2019, and Office 2021 are installed using the Click-to-Run (C2R) Installer, rather than using an MSI package like previous versions of Office. Click to Run is a delivery method for Microsoft products where all files are downloaded to your computer from the Internet (Microsoft CDN).
  5. In the Licensing and Activation section, you can check to automatically accept the EULA, specify MAK or KMS license key to activate Office. If you install MS Office on an RDS server, you must use the Shared Computer Activation mode;
    <Property Name="SharedComputerLicensing" Value="1" />
  6. You can configure additional options for Office programs in the Application Preferences section (we have skipped this step);
  7. Once all the settings have been defined, click Export. Specify the XML configuration and download it to your computer.Download Office customization config file

Move the XML file (office2019_custom_config.xml) to the ODT directory. The XML file contains the following lines, indicating that the ODT exclude the following apps then deploying Office on a computer.

<ExcludeApp ID="Access" />
<ExcludeApp ID="Groove" />
<ExcludeApp ID="OneDrive" />
<ExcludeApp ID="OneNote" />
<ExcludeApp ID="PowerPoint" />
<ExcludeApp ID="Publisher" />
<ExcludeApp ID="Lync" />
<ExcludeApp ID="Teams" />
<ExcludeApp ID="Bing" />

Apps excluded from MS Office installation

The Office Customization Tool website only allows you to create XML files for volume editions of Office. If you are using a Home, Business or other retail Office edition, you will need to enter the product ID manually. Popular Retail Office edition ProductIDs are listed in the table:

Office EditionProductID
Micrtosoft 365 Business RetailO365BusinessRetail
Micrtosoft 365 Home Pre RetailO365HomePremRetail
Office 2019 Home Student RetailHomeStudent2019Retail
Office 2019 Home Business RetailHomeBusiness2019Retail
Office 2019 PersonalPersonal2019Retail
Office 2019 ProfessionalProfessional2019Retail
Office 2019 Standard RetailStandard2019Retail
Office 2019 Pro Plus RetailProPlus2019Retail
Micrtosoft 365 Home Pre RetailO365HomePremRetail
Micrtosoft 365 Pro Plus RetailO365ProPlusRetail

Edit the XML as follows. Replace the second and third lines with:

<Add OfficeClientEdition="32">
   <Product ID="O365BusinessRetail">

In this example, I want to install Office 365 Business Retail (replace O365BusinessRetail with the product ID that you want to use).

ODT Customization for Office 365 Business Retail edition

Custom Install Only Specific Apps in Office 2021/2019 or Office 365

Open the command prompt as administrator. If you selected to get the installation files from a CDN in the XML file, run the following command to download Office 2019 from the CDN (the files will be downloaded from the Internet) and install Office immediately based on the settings in your XML file:

cd c:\odt
Setup.exe /configure office2019_custom_config.xml

Office will be installed. the C2R installer window will display the icons of the installed Office apps that you have selected (in my example, only Word, Excel, and Outlook are installed).

Selective installation of Office 365 apps

As a result, only Word, Excel, and Outlook will be installed on your computer. If you want to install another app, for example, Teams, just remove the line  <ExcludeApp ID="Teams”/> from your XML file. Save the file and apply the ODT using the same command:

Setup.exe /configure o365_custom_configuration.xml

If you want to install Office from a local drive or a shared network folder on your server, you must download the Office distribution installation files (about 3 GB) to your computer:

Setup.exe /download office2019_custom_config.xml

To install Office from a shared network folder (instead of downloading files from a CDN on the Internet), you must set the option in the XML. Replace:

<Add OfficeClientEdition="32" Channel="PerpetualVL2019">

with:

<Add OfficeClientEdition="32" Channel="Current" SourcePath="\\mun-fs01\install\office" AllowCdnFallback="FALSE">

In addition, you can enable the logging of the Office installation:

<Logging Level="Standard" Path="C:\ODT\"/>

Uninstall Individual Office App from Windows

This XML file can be used to remove a specific app from an Office installation. For example, to uninstall Outlook, add this line to the XML file:

<ExcludeApp ID="Outlook" />

Remove specific Office application

Save the file and run the command:

Setup.exe /configure office2019_custom_config.xml

The Office application that you have excluded will be removed from your computer.

20 comments
14
Facebook Twitter Google + Pinterest
previous post
How to Enable and Configure MPIO on Windows Server
next post
How to Enable or Disable SMB 1.0 in Windows 10/11 and Windows Server

Related Reading

Change BIOS from Legacy to UEFI without Reinstalling...

April 21, 2025

Remove ‘Your License isn’t Genuine’ Banner in MS...

April 21, 2025

Uninstalling Windows Updates via CMD/PowerShell

April 18, 2025

Allowing Ping (ICMP Echo) Responses in Windows Firewall

April 15, 2025

How to Pause (Delay) Update Installation on Windows...

April 11, 2025

20 comments

Sany January 5, 2021 - 8:26 am

This was very helpful and it worked for me.

Reply
Edward Bear February 12, 2021 - 8:14 pm

This is too complex for my users. Individual checklists were fine for decades. Now you have to go through rigamarole to stop apps you don’t need from installing. Not progress

Reply
Anon April 18, 2021 - 8:15 am

Thank you but this article does not mention if this procedure would work for a home user. On the Office Customization Tool XML generator page, under “which products and apps do you want to deploy?” there is no “Microsoft 365 PERSONAL” choice, there is only “microsoft 365 apps for enterprise” and “microsoft 365 apps for business” – so the question is – would this procedure work for “Microsoft 365 PERSONAL”? What would the exact “Product ID” be in such a case?

On the following microsoft page “List of Product IDs which are supported by the Office Deployment Tool for Click-to-Run” it says “If you use the wrong product ID, you can’t activate Office.”

For anyone interested in the above procedure I would recommend a few hours of google search results for “Office Deployment Tool” first before doing anything. NO-ONE seems to have updated their published ODT procedures for 2021. Recommended: use quotes in your google search: “microsoft 365” “personal” “Office Deployment Tool” “product id”

SHAME ON micro$$$oft for forcing 3 GB of installations on a home computer when the end user only needs Word & Excel – it is an arrogant corporation that is NOT customer-oriented. I agree, less customization is NOT software “progress.”

Reply
BGates October 25, 2021 - 7:18 pm

BIG TIME!!! To this day. SHAME on them. I’m leaving micro$$$$$$$$$oft for linux and this is just one of the few reasons. See you never Billy!

Reply
Jaroslav May 3, 2022 - 8:50 am

You can find this in ODT templates. There should be “”

Reply
Jaroslav May 3, 2022 - 8:50 am

Edit:
O365ProPlusRetail

Reply
jo May 25, 2021 - 5:38 am

I have 365 personal (in a family plan), picked Microsoft 365 Apps for Business and it worked fine for me

Reply
Javier June 2, 2021 - 7:08 am

And what happen with the updates. My feeling is that afdter the uupdate cycle comes then the full package is updated and you get installed on your computer the full lost of office apps.

Reply
Mike June 18, 2021 - 3:29 pm

I did the steps to generate the configuration file and started the app passing the configuration.xml as argument but still it installed everything, here’s my config file:

Reply
cringe November 2, 2021 - 4:36 am

sht looks like u have to nuke windows again to remove the spyware

Reply
Ben July 8, 2021 - 12:42 am

“” ‘Setup.exe’ is not recognized as an internal or external command,
operable program or batch file.””

That’s the message returned by CMD as it refuses to run the command. Any Help?

Reply
Jarell Lam July 30, 2021 - 6:04 am

it should be .\setup

Reply
Pennie July 28, 2021 - 12:13 am

Ben, I received that error msg too. It’s because you’re not in the directory where your setup and config files are located. Change your directory with this command: “cd C:\Users\User\Desktop\ODT” Of course change the path to wherever the setup and config files reside. Once you’re in the right directory the command should work. Good luck!

Reply
Peter September 13, 2021 - 10:44 am

Quite helpful, but does skip over a lot of steps that the average user might not know they need to do

Reply
SAIDU J.S.K. September 15, 2021 - 5:58 am

SAIDU J.S.K.
I was taught only yesterday on how to install office 2016, 365 and 2019. but I have still not got the exact simple procedure for installing each of them. Can you please help me with DETAILED, simple, short and straight forward procedure for the installation of each?

Reply
Hagen January 10, 2022 - 8:52 pm

This was Brilliant and worked for me! Thanks a lot.

Reply
Jaroslav May 3, 2022 - 8:52 am

This is amazing and easy tu use after all. Once you seti everything up, you can replicate by one click.

I found problem with pultiple users on the same machine. This scenerio is working for actually logged in user, every one else gets deployed all the apps anyway.

Reply
Alison October 1, 2022 - 5:28 am

I have downloaded the office 2021 setup file (OfficeSetup.exe) for home and business (personal) and have its legitimate product key. But – for now – only want to install excel. I have the office deployment tool. But I can’t follow the above instructions. I don’t know how to adapt the first few lines of the configuration tool for my case. What does this mean: “If when creating an XML file you specified that the installation files are obtained from CDN, run the following command to download Office 365 from CDN”. What is the “CDN”? In the configuration file : How do I specify i want to install 2021; where do I put my product key?

Reply
anonym November 10, 2022 - 4:11 pm

just go to config.office.com

Reply
emirbc October 18, 2024 - 12:47 am

great information it’s works 100% for me thanks

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMware
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025
  • How to Write Logs to the Windows Event Viewer from PowerShell/CMD

    March 3, 2025
  • How to Hide (Block) a Specific Windows Update

    February 25, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Outlook Not Showing Embedded Images in Emails
  • Read and Write Excel (XLSX) Files with PowerShell
  • Export Exchange or Office 365 Global Address List (GAL) to CSV
  • How to Check the Activation Status of MS Office 2021, 2019, and 365
  • How to Increase Attachment Size Limit in Outlook
  • How to Disable Microsoft Teams Auto Startup
  • How to Hide Users and Groups from the Global Address List on Exchange/Office 365
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top