Microsoft Office 15 Update

broken image


Easily create surveys and polls to collect customer feedback, measure employee satisfaction, and organize team events. Quickly create quizzes to measure student knowledge, evaluate class progress, and focus on subjects that need improvement. Microsoft Forms automatically provides charts to visualize your data as you collect responses in real time.

  • If you'd like to verify that you're up to date, check your Office version number and manually update Office if necessary. Note The most current version of Office 2013 is 15.0.5319.1000, which was released on February 9, 2021.
  • Collaborate for free with online versions of Microsoft Word, PowerPoint, Excel, and OneNote. Save documents, spreadsheets, and presentations online, in OneDrive.
-->

With the Office Deployment Tool (ODT), you can download and deploy Microsoft 365 Apps to your client computers. The ODT gives you more control over an Office installation: you can define which products and languages are installed, how those products should be updated, and whether or not to display the install experience to your users. This article covers all the available options in the tool. To learn how to use the tool itself, see Overview of the Office Deployment Tool.

Note

Best practice: The options in this article show the XML elements and attributes in the configuration file. You can continue to create the configuration file in a text editor, but we recommend using the Office Customization Tool instead. With the Office Customization Tool, you can easily create and modify configuration files in a web-based interface. For more information, see Overview of the Office Customization Tool.

Example of a standard configuration file

The ODT consists of two files: setup.exe and configuration.xml. To work with the tool, you edit the configuration file to define what options you want, and then run setup.exe from the command line. For example, you can edit the configuration file to download the 32-bit English edition of Office, or you can edit the file to install the 32-bit English edition of Office with the EULA automatically accepted and without Publisher.

When creating the configuration file, we recommend starting with an example file and updating it with the appropriate options for your environment. You can start by copying and pasting the example below into a text file and saving it with a name of your choosing. Use the file to modify the XML elements and attributes and use the rest of this article to learn more details about each of the elements and attributes.

This configuration file includes the most-commonly used elements and attributes, and can be used to download and install Office on a client computer

ValueDescription
Add SourcePath='ServerShare'
Office will be downloaded to 'servershare' on your network and deployed using installation files at that location.
Add OfficeClientEdition='32'
Downloads and installs the 32-bit edition of Office
Add Channel='SemiAnnual'
Office will be installed using Semi-Annual Enterprise Channel.
Product
Downloads and installs Microsoft 365 Apps for enterprise.
Language
Language
Downloads and installs English and Japanese versions of Office.
Updates Enabled='TRUE'
Office will check for updates.
Updates UpdatePath='ServerShare'
Office checks for updates at 'servershare' on your network.
Display Level='None' AcceptEULA='TRUE'
When installing Office, no user interface is displayed.

Note

The Logging element is no longer supported as a configuration option for the Office Deployment Tool. Log files can be found in the %temp% folder.

Add element

Defines the products and languages to download or install

Example

SourcePath attribute (part of Add element)

Optional.

Defines the location of the Office installation files. If the ODT is run in download mode, defines where to save the files. If not included, the ODT will look for installation files in the same folder as the tool, and then use the Office Content Delivery Network (CDN). If not included and the ODT is run in download mode, the Office installation files are downloaded to the same folder as the tool.

When you download Office to a folder that already contains that version of Office, the ODT will conserve your network bandwidth by downloading only the missing files. For example, if you use the ODT to download Office in English and German to a folder that already contains Office in English, only the German language pack will be downloaded.

Example values:

  • SourcePath='servershare'
  • SourcePath='c:preloadoffice'

Version attribute (part of Add element)

Optional. Defaults to the latest version available if not specified.

When you use the Version attribute, we recommend including the Channel attribute as well. If you don't include the Channel attribute, the default channel will be used, which might not match the specified version.

If Microsoft 365 Apps is already installed on a device, you can use Version='MatchInstalled' to install the same version of Office, even if a newer version is available. This setting can make it easier to add language packs or Visio and Project without updating Office to a newer version.

Example values:

  • Version='16.0.8201.2193'
  • Version='MatchInstalled'

OfficeClientEdition attribute (part of Add element)

Optional.

Defines whether the 32-bit or 64-bit edition of Microsoft 365 Apps is downloaded or installed. If Office is not installed on the device and OfficeClientEdition is not specified, the ODT will default to the 64-bit edition, unless the device is running a 32-bit edition of Windows or has less than 4 GB RAM. If Office is installed and OfficeClientEdition not specified, the ODT will match the architecture of the existing installation of Office. If Office is installed and OfficeClientEdition is specified, then it must match the already installed architecture. If it doesn't, the installation will fail, since mixed architectures are not supported.

Allowed values:

  • OfficeClientEdition='64'
  • OfficeClientEdition='32'

Channel attribute (part of Add element)

Optional.

Defines which channel to use for installing Office. If Office is not installed on the device, the default setting for the Channel attribute is Current. If Office is installed on the device and the channel attribute is not specified, the ODT will match the channel of the existing installation.

This value determines the channel to be installed, regardless of an optionally specified update channel in the Updates element or via Group Policy Setting. If there is such setting with a different update channel, the channel switch is performed after the installation during the next update cycle. For more information, see Change the Microsoft 365 Apps update channel.

For more information about update channels, see Overview of update channels for Microsoft 365 Apps.

Allowed values:

  • Channel='BetaChannel'
  • Channel='CurrentPreview'
  • Channel='Current'
  • Channel='MonthlyEnterprise'
  • Channel='SemiAnnualPreview'
  • Channel='SemiAnnual'

Note

  • To use these attribute values, you need to be using at least version 16.0.12827.20268 of the Office Deployment Tool, which was released on Tuesday June 9, 2020.
  • Previous allowed values for each update channel can still be used, which means you don't have to update your older configuration XML files.
  • Beta Channel (sometimes referred to as Insider Fast) is not a supported build so should only be used in test environments and by a small group of select users, such as IT staff or application developers.

If you're deploying Office Professional Plus 2019, which is a volume licensed version of Office, there is a different update channel you need to use: PerpetualVL2019. For more information, see Update channel for Office 2019.

DownloadPath attribute (part of Add element)

Optional. Defaults to the CDN if not specified.

Defines where the installation files are downloaded from when running ODT in download mode. Most commonly used to distribute specific languages and products for Office from a central location on your network to another location. Note that you must specify a version when using DownloadPath, as shown in the example.

Example values:

  • DownloadPath='serverashare'

Example

AllowCdnFallback attribute (part of Add element)

Optional. Defaults to False if not specified.

To use the Office CDN as a backup source for language packs, include the 'AllowCdnFallback' attribute in the configuration file, as shown in the example.

When installing languages, the ODT looks first for source files in the location specified in the SourcePath attribute. If the language pack isn't available at that location and the AllowCdnFallback setting is set to True, then the ODT will use source files from the Office CDN.

Allowed values:

  • AllowCdnFallback='True'
  • AllowCdnFallback='False'

Example

MigrateArch attribute (part of Add element)

Optional. Defaults to False if not specified.

If set to TRUE, then your existing installation of Microsoft 365 Apps will be changed to the architecture (sometimes referred to as the bitness) that is specified in the OfficeClientEdition attribute. For example, you can use this to change a 32-bit installation of Microsoft 365 Apps to a 64-bit installation.

For more information about using MigrateArch, see Change a Microsoft 365 Apps installation from 32-bit to 64-bit.

OfficeMgmtCOM attribute (part of Add element)

Optional. Defaults to False if not specified.

For Configuration Manager to be able to manage Microsoft 365 Apps updates, an Office COM object needs to be enabled on the computer where Office is installed. If set to TRUE, the Office COM object takes commands from Configuration Manager to download and install client updates. When the Office COM object is enabled, the Update Now option on the Account page for Microsoft 365 Apps is automatically disabled for client devices.

For more information, see Manage updates to Microsoft 365 Apps with Microsoft Endpoint Configuration Manager.

Allowed values:

  • OfficeMgmtCOM='True'
  • OfficeMgmtCOM='False'

Example

Product element

Defines which products to download or install. If you define multiple products, the products are installed in the order in the configuration file. The first product determines the context for the Microsoft Office First Run Experience. Program adobe premiere.

You can also use the Product element to add language packs to existing installations of Microsoft 365 Apps. For more information, including an example configuration file, see Deploy languages to existing installations of Microsoft 365 Apps.

Example

ID attribute (part of Product element)

Required.

Defines the ID of the product to download or install.

Example values:

  • ID='O365ProPlusRetail'
  • ID='VisioProRetail'
  • ID='ProjectProRetail'

For a list of all supported product IDs, see Product IDs that are supported by the Office Deployment Tool for Click-to-Run

MSICondition attribute (part of Product element)

Optional.

Allows you to control the installation of an Office product, as specified by the ID attribute, based on whether a particular MSI-based Office product is already installed on the device. For example, if an MSI-based version of Project Professional is already installed on the device, then install Project Online Desktop Client.

You can specify any Office product that was installed by Windows Installer (MSI), but MSICondition is most commonly used for Project or Visio installations. The value that you specify for the MSICondition attribute can be either a volume licensed or a retail version of the product, as long as that version of the product was installed by using MSI.

MSICondition will recognize 2007, 2010, 2013, and 2016 versions of the Office product that you specify. But, you can't specify a particular version. For example, you can't have MSICondition look specifically for Visio Standard 2013. MSICondition will look for all MSI-based installations of Visio Standard, including Visio Standard 2007, Visio Standard 2010, Visio Standard 2013, and Visio Standard 2016.

The value that you specify for the MSICondition attribute is the Setup ID that is found in the Setup.xml file in the {product}.WW folder of the installation files for your existing version of the Office product. For example, the Setup.xml file for Visio Professional 2016 is found in the VisPro.WW folder. You can specify multiple types of an Office product, separated by a comma. For example, you can specify 'PrjStd,PrjStdR,PrjPro,PrjProR' to look for installations of Project Standard or Project Professional, either volume licensed or retail.

Note

  • We recommend that you remove the existing MSI-based Office products as part of installing the products specified in your XML file. To remove existing MSI-based products, use the RemoveMSI element.

Example of MSICondition attribute

In the following example, Project Online Desktop Client will be installed on the device only if an MSI-based version of Project Standard is already installed on the device. Also, Project Standard will be removed from the device as part of the installation of Project Online Desktop Client.

Language element

Defines which languages to download or install. If you define multiple languages, the first language in the configuration file determines the Shell UI culture, including shortcuts, right-click context menus, and tooltips. If you decide that you want to change the Shell UI language after an initial installation, you have to uninstall and reinstall Office.

Example

ID attribute (part of Language element)

Required.

Defines the ID of the language to download or install.

Example values

  • ID='en-us'
  • ID='ja-jp'
  • ID='MatchOS'
  • ID='MatchPreviousMSI'
  • ID='MatchInstalled'

For a list of all languages, see Languages, culture codes, and companion proofing languages.

For more information about MatchPreviousMSI, see Remove existing MSI versions of Office when upgrading to Microsoft 365 Apps.

MatchOS and MatchInstalled cannot install the operating system languages if Office doesn't support that language or if the ODT cannot find the correct language pack in the local source files. To help address this issue, we recommend that you specify a backup language and allow the ODT to use the Office CDN for missing files. To do so, use the Fallback attribute and AllowCdnFallBack attribute.

MatchInstalled can be used only if there is at least one Click-to-Run product already installed. It can't be used with the /download switch for the ODT. For more information about MatchInstalled, see Overview of deploying languages and Build dynamic, lean, and universal packages for Microsoft 365 Apps.

Fallback attribute (part of Language element)

Optional.

When using MatchOS, we recommend that you specify a fallback language to install when a matched language isn't supported by Office or can't be found in the local source files. To do so, use the 'Fallback' attribute. For more information, see Install the same languages as the operating system.

Example values:

  • Fallback='en-us'
  • Fallback='ja-jp'

TargetProduct attribute (part of Language element)

Optional.

When using MatchInstalled, you can specify if you want to match the list of already installed languages for a specific product or the combination of all installed products. To target a specific product, you can specify any supported product ID. If you want to match the languages of all already installed products, you specify 'All'. ODT will then install the new product with the same set of languages as the one specified in TargetProduct.

If there is no TargetProduct specified with MatchInstalled, the ODT will attempt to match the same Product ID that the Language tag belongs to in the configuration file. For example, if you are using MatchInstalled while installing 'VisioProRetail' without a TargetProduct, ODT will attempt to match the already installed languages for this product.

Example values:

Display element

Defines what the user sees when Office is installed.

Example

Level attribute (part of Display element)

Optional. Default is set to Full if not specified.

If Level is set to None, Office is installed with no user interface: no progress bars, completion screens, error messages, or other user interface are displayed.

If Level is set to Full, Office is installed with the normal installation experience.

Allowed values: Adobe com go reader_download for ipad.

  • Level='None'
  • Level='Full'

AcceptEULA attribute (part of Display element)

Optional. Defaults to FALSE if not specified.

If AcceptEULA is set to TRUE, the user does not see a Microsoft Software License Terms dialog box. If this attribute is set to FALSE or is not included, the user may see a Microsoft Software License Terms dialog box. We recommend that administrators set AcceptEULA to TRUE.

Allowed values:

  • AcceptEULA='TRUE'
  • AcceptEULA='FALSE'

Note

If you deploy a version of Office before Version 1803, this setting will be applied only if you install with the user's account. Microsoft Endpoint Configuration Manager and other software distribution tools that use the SYSTEM account for installation will not apply the setting.

ExcludeApp element

Defines which Microsoft 365 Apps products should not be installed. OneDrive is automatically installed when you install Microsoft 365 Apps or install individual applications, such as Word, Excel, PowerPoint, Publisher, Visio, or Skype. If you don't want OneDrive installed with those applications, use the ExcludeApp element to remove it. For more information, see Exclude OneDrive when installing Microsoft 365 Apps or other applications.

Example

If a configuration file with ExcludeApp is used to install Office on a device that already has Microsoft 365 Apps installed, the ExcludeApp setting is treated differently based on the list of languages:

  • If the list of languages in the configuration file includes all the installed languages, then the ExcludeApp setting in the file replaces any existing ExcludeApp setting on the device. This is also true if the list of languages in the configuration file includes both all the installed languages and additional languages.
  • If the list of languages in the configuration file doesn't include all the installed languages, then the ExcludeApp setting in the configuration file will be combined with the ExcludeApp setting on the device.

ID attribute (part of ExcludeApp element)

Required.

Defines the ID of the product that should not be installed.

Allowed values:

  • ID='Access'
  • ID='Excel'
  • ID='Groove'
  • ID='Lync'
  • ID='OneDrive'
  • ID='OneNote'
  • ID='Outlook'
  • ID='PowerPoint'
  • ID='Publisher'
  • ID='Teams'
  • ID='Word'

For OneDrive for Business, use Groove. For Skype for Business, use Lync.

For more information about Microsoft Teams, see Deploy Microsoft Teams with Microsoft 365 Apps.

Property element

Defines certain Office behaviors and properties.

Example

Name attribute (part of Property element)

Required.

Defines the specific property whose value you want to set.

Value attribute (part of Property element)

Defines the value of the named property.

AUTOACTIVATE property (part of Property element)

Optional. Default is 0 if not specified.

Because Microsoft 365 Apps is set to activate automatically, you should not set this property for Microsoft 365 Apps products. For other products, you can set AUTOACTIVATE to 1 to have the product activate automatically.

Allowed values:

  • Property Name='AUTOACTIVATE'Value='0'
  • Property Name='AUTOACTIVATE'Value='1'

FORCEAPPSHUTDOWN property (part of Property element)

Optional. Default is FALSE if not specified.

When set to TRUE, forces any apps that are blocking the install of Office to shut down. Data loss may occur.

Allowed values:

  • Property Name='FORCEAPPSHUTDOWN'Value='FALSE'
  • Property Name='FORCEAPPSHUTDOWN'Value='TRUE'

PACKAGEGUID property (part of Property element)

Optional.

By default, App-V packages created by the ODT share the same App-V Package ID. Administrators can use PACKAGEGUID to specify a different Package ID. This allows you to publish multiple App-V packages of Office to an App-V Management Server. But, this doesn't enable you to deploy more than one Office App-V package to a single computer. You can use the ODT to create App-V packages for Microsoft 365 Apps. Creating packages for the volume-licensed versions of Office Professional Plus or Office Standard is not supported.

The Package ID must follow the format of the example and can only use these characters: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F

If you use any other characters, the App-V package is created with the default Package ID.

Example values:

  • Property Name='PACKAGEGUID'Value='12345678-ABCD-1234-ABCD-1234567890AB'

SharedComputerLicensing property (part of Property element)

Optional. Default value is 0 if not specified.

Set SharedComputerLicensing to 1 if you deploy Microsoft 365 Apps to shared computers by using Remote Desktop Services.

For more information, see Overview of shared computer activation for Microsoft 365 Apps.

Allowed values:

  • Property Name='SharedComputerLicensing' Value='0'
  • Property Name='SharedComputerLicensing' Value='1'

SCLCacheOverride property (part of Property element)

Optional. Default value is 0 if not specified.

Set SCLCacheOverride to 1 if you're using shared computer activation and you want to roam the licensing token. Use in conjunction with SCLCacheOverrideDirectory. This is only needed if you choose to move the licensing token from its default location. For more information, see Overview of shared computer activation for Microsoft 365 Apps.

Allowed values:

  • Property Name='SCLCacheOverride' Value='0'
  • Property Name='SCLCacheOverride' Value='1'

SCLCacheOverrideDirectory property (part of Property element)

Optional.

Set SCLCacheOverrideDirectory to specify a folder location for the licensing token if you're using shared computer activation and you want to roam the licensing token. Use in conjunction with SCLCacheOverride. This is only needed if you choose to move the licensing token from its default location.

For more information, see Overview of shared computer activation for Microsoft 365 Apps.

Example values:

  • Property Name='SCLCacheOverrideDirectory' Value='%appdata%Microsoft'
  • Property Name='SCLCacheOverrideDirectory' Value='servershare%username%'

DeviceBasedLicensing property (part of Property element)

Optional. Default value is 0 if not specified.

Defines the Office licensing mode for device-based activation. For more information, see Device-based licensing for Microsoft 365 Apps for enterprise.

Allowed values:

  • Property Name='DeviceBasedLicensing' Value='1'
  • Property Name='DeviceBasedLicensing' Value='0'

PinIconsToTaskBar property (part of Property element)

Optional. The default value is True if not specified.

Defines whether shortcut icons for Office products are added to the Windows taskbar in Windows 7 and 8.1. If you install Office using a system account, which is common when deploying with Microsoft Endpoint Configuration Manager, the icons will not be pinned even if this property is set to True.

Allowed values:

  • Property Name='PinIconsToTaskbar'Value='FALSE'
  • Property Name='PinIconsToTaskbar'Value='TRUE'

Note

Microsoft 365 Apps is no longer supported on Windows 7. For more information, see Windows 7 end of support and Microsoft 365 Apps.

Remove element

Defines which products and languages to remove from a previous installation of Microsoft 365 Apps. To remove an installed language, you must provide both the product and the language, as in the example. To remove all the installed languages, do not include the language attribute. In that case, the ODT automatically discovers and removes all installed languages for the product.

For more information, see Overview of the Office Deployment Tool.

Example

All attribute (part of Remove element)

Optional. The default value is FALSE if not specified.

If set to TRUE, all Microsoft 365 Apps products and languages will be removed, including Project and Visio.

Allowed values:

  • All='FALSE'
  • All='TRUE'

Updates element

Defines how Office is updated after it's installed.

Example

Enabled attribute (part of Updates element)

Optional. The default value is TRUE if not specified.

If set to TRUE, Office will check for updates.If set to FALSE, Office won't check for updates, but the user can check for updates by going to File > Account > Update Options > Update Now.

Allowed values:

  • Enabled='TRUE'
  • Enabled='FALSE'

UpdatePath attribute (part of Updates element)

Optional. Defaults to the CDN if not specified.

Defines where the updates for Office come from. UpdatePath can specify a network, local, or HTTP path of a source for Office installation files. Environment variables can be used for network or local paths.

If you use Group Policy with the Administrative Template files (ADMX/ADML) for Office, you can set UpdatePath by using the Update Path policy setting. You can find this policy setting under Computer ConfigurationPoliciesAdministrative TemplatesMicrosoft Office 2016 (Machine)Updates.

Example values:

  • UpdatePath='servershare'
  • UpdatePath='C:PreloadOffice'
  • UpdatePath='http://internalApps/Office/'

TargetVersion attribute (part of Updates element)

Optional. Defaults to the latest version from the specified update path.

Defines which version Office updates to. If TargetVersion is set to a specific build number, Office attempts to update to that version.

If you use Group Policy with the Administrative Template files (ADMX/ADML) for Office, you can set TargetVersion by using the Target Version policy setting. You can find this policy setting under Computer ConfigurationPoliciesAdministrative TemplatesMicrosoft Office 2016 (Machine)Updates.

Example values:

  • TargetVersion='15.1.2.3'
  • TargetVersion='

Deadline attribute (part of Updates element)

Optional.

Defines a deadline by which updates must be applied. The deadline is specified in Coordinated Universal Time (UTC). You can use Deadline with Target Version to make sure that Office is updated to a particular version by a particular date. We recommend that you set the deadline at least a week in the future to allow users time to install the updates.

Prior to the deadline, users receive multiple reminders to install the updates. If Office isn't updated by the deadline, users see a notification that the updates will be applied in 15 minutes. This gives users the opportunity to save the Office documents that they are working on and to close any Office programs that are open. If users don't close the Office programs, the programs are closed automatically when the 15 minutes are up, which might result in data loss.

After the Office programs are closed, the updates are applied automatically. The deadline only applies to one set of updates. If you want to use a deadline to make sure that Office is always up to date, you must change the deadline every time a new update for Office is available.

To use this attribute, Office must be running at least Service Pack 1 (version 15.0.4569.1507). If you use Group Policy with the Administrative Template files (ADMX/ADML) for Office, you can set Deadline by using the Update Deadline policy setting. You can find this policy setting under Computer ConfigurationPoliciesAdministrative TemplatesMicrosoft Office 2016 (Machine)Updates.

Example value:

  • Deadline='05/16/2014 18:30'

Channel attribute (part of Updates element)

Optional. The default is Current.

Defines which channel to use for updating Office after it is installed. There are two channel attributes: the channel for the Add element is used to specify an update channel while installing Office, and the channel for the Updates element is used to change the channel for an existing installation of Office.

For more information about update channels, see Overview of update channels for Microsoft 365 Apps.

If you use Group Policy with the Administrative Template files (ADMX/ADML) for Office, you can set Channel by using the Update Channel policy setting. You can find this policy setting under Computer ConfigurationPoliciesAdministrative TemplatesMicrosoft Office 2016 (Machine)Updates. If enabled, this Group Policy setting takes precedence over the Channel value set by using the Office Deployment Tool.

Allowed values:

  • Channel='BetaChannel'
  • Channel='CurrentPreview'
  • Channel='Current'
  • Channel='MonthlyEnterprise'
  • Channel='SemiAnnualPreview'
  • Channel='SemiAnnual'

Note

  • To use these attribute values, you need to be using at least version 16.0.12827.20268 of the Office Deployment Tool, which was released on Tuesday June 9, 2020.
  • Previous allowed values for each update channel can still be used, which means you don't have to update your older configuration XML files.
  • Beta Channel (sometimes referred to as Insider Fast) is not a supported build so should only be used in test environments and by a small group of select users, such as IT staff or application developers.

If you're deploying Office Professional Plus 2019, which is a volume licensed version of Office, there is a different update channel you need to use: PerpetualVL2019. For more information, see Update channel for Office 2019.

RemoveMSI element

Optional.

Specifies whether any 2007, 2010, 2013, or 2016 versions of Office, Visio, and Project that were installed using Windows Installer (MSI) are uninstalled from the computer prior to the installation of the specified product, such as Microsoft 365 Apps.

We recommend that you uninstall any previous versions of Office before installing Microsoft 365 Apps. For more information about using RemoveMSI, see Remove existing MSI versions of Office when upgrading to Microsoft 365 Apps.

Microsoft office update free

IgnoreProduct attribute (part of RemoveMSI element)

Optional.

If an ID is specified, that Windows Installer (MSI) product won't be uninstalled from the computer.

Example values:

  • IgnoreProduct
  • IgnoreProduct

AppSettings element

Optional.

Defines application preferences for Microsoft 365 Apps, including VBA Macro notifications, default file locations, and default file format. To create a configuration file with application preferences, we recommend you use the Office Customization Tool for Click-to-Run, a web application with a full user interface. You can also use the tool to learn more about the available application preferences.

For more information about application preferences, see Apply application preferences and Apply application preferences to an existing installation of Office.

Example

Related articles

-->

These release notes provide information about security fixes that are included in updates to Microsoft Office.

This information applies to Microsoft 365 Apps for enterprise, Microsoft 365 Apps for business, Office 2016 Retail (C2R), and Office 2019.

Important

  • We're making some changes to the update channels for Microsoft 365 Apps, including adding a new update channel (Monthly Enterprise Channel) and changing the names of the existing update channels. To learn more, read this article.
  • Office 365 ProPlus is being renamed to Microsoft 365 Apps for enterprise, starting with Version 2004. To learn more, read this article. In our documentation, we'll usually just refer to it as Microsoft 365 Apps.

March 09, 2021

Current Channel: Version 2102 (Build 13801.20294)
Monthly Enterprise Channel: Version 2101 (Build 13628.20528)
Monthly Enterprise Channel: Version 2012 (Build 13530.20628)
Semi-Annual Enterprise Channel (Preview): Version 2102 (Build 13801.20294)
Semi-Annual Enterprise Channel: Version 2008 (Build 13127.21348)
Semi-Annual Enterprise Channel: Version 2002 (Build 12527.21686)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.21686)
Office 2019 Retail: Version 2102 (Build 13801.20294)
Office 2016 Retail: Version 2102 (Build 13801.20294)
Office 2019 Volume Licensed: Version 1808 (Build 10372.20060)

Excel

PowerPoint

Visio

Office Suite

February 09, 2021

Current Channel: Version 2101 (Build 13628.20380)
Monthly Enterprise Channel: Version 2012 (Build 13530.20528)
Monthly Enterprise Channel: Version 2011 (Build 13426.20658)
Semi-Annual Enterprise Channel (Preview): Version 2008 (Build 13127.21216)
Semi-Annual Enterprise Channel: Version 2008 (Build 13127.21216)
Semi-Annual Enterprise Channel: Version 2002 (Build 12527.21594)
Semi-Annual Enterprise Channel: Version 1908 (Build 11929.21008)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.21594)
Office 2019 Retail: Version 2101 (Build 13628.20380)
Office 2016 Retail: Version 2101 (Build 13628.20380)
Office 2019 Volume Licensed: Version 1808 (Build 10371.20060)

Excel

January 12, 2021

Current Channel: Version 2012 (Build 13530.20376)
Monthly Enterprise Channel: Version 2011 (Build 13426.20526)
Monthly Enterprise Channel: Version 2010 (Build 13328.20550)
Semi-Annual Enterprise Channel (Preview): Version 2008 (Build 13127.21064)
Semi-Annual Enterprise Channel: Version 2008 (Build 13127.21064)
Semi-Annual Enterprise Channel: Version 2002 (Build 12527.21504)
Semi-Annual Enterprise Channel: Version 1908 (Build 11929.20994)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.21504)
Office 2019 Retail: Version 2012 (Build 13530.20376)
Office 2016 Retail: Version 2012 (Build 13530.20376)
Office 2019 Volume Licensed: Version 1808 (Build 10370.20052)

Excel

Word

Office Suite

December 08, 2020

Current Channel: Version 2011 (Build 13426.20332)
Monthly Enterprise Channel: Version 2010 (Build 13328.20478)
Monthly Enterprise Channel: Version 2009 (Build 13231.20620)
Semi-Annual Enterprise Channel (Preview): Version 2008 (Build 13127.20910)
Semi-Annual Enterprise Channel: Version 2002 (Build 12527.21416)
Semi-Annual Enterprise Channel: Version 1908 (Build 11929.20984)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.21416)
Office 2019 Retail: Version 2011 (Build 13426.20332)
Office 2016 Retail: Version 2011 (Build 13426.20332)
Office 2019 Volume Licensed: Version 1808 (Build 10369.20032)

Excel

Outlook

PowerPoint

November 10, 2020

Current Channel: Version 2010 (Build 13328.20356)
Monthly Enterprise Channel: Version 2009 (Build 13231.20514)
Monthly Enterprise Channel: Version 2008 (Build 13127.20760)
Semi-Annual Enterprise Channel (Preview): Version 2008 (Build 13127.20760)
Semi-Annual Enterprise Channel: Version 2002 (Build 12527.21330)
Semi-Annual Enterprise Channel: Version 1908 (Build 11929.20974)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.21330)
Office 2019 Retail: Version 2010 (Build 13328.20356)
Office 2016 Retail: Version 2010 (Build 13328.20356)
Office 2019 Volume Licensed: Version 1808 (Build 10368.20035)

Excel

Word

Office Suite

October 13, 2020

Current Channel: Version 2009 (Build 13231.20390)
Monthly Enterprise Channel: Version 2008 (Build 13127.20638)
Monthly Enterprise Channel: Version 2007 (Build 13029.20708)
Semi-Annual Enterprise Channel (Preview): Version 2008 (Build 13127.20638)
Semi-Annual Enterprise Channel: Version 2002 (Build 12527.21236)
Semi-Annual Enterprise Channel: Version 1908 (Build 11929.20966)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.21236)
Office 2019 Retail: Version 2009 (Build 13231.20390)
Office 2016 Retail: Version 2009 (Build 13231.20390)
Office 2019 Volume Licensed: Version 1808 (Build 10367.20048)

Access

Excel

Outlook

Word

Office Suite

September 08, 2020

Current Channel: Version 2008 (Build 13127.20408)
Monthly Enterprise Channel: Version 2007 (Build 13029.20534)
Monthly Enterprise Channel: Version 2006 (Build 13001.20648)
Semi-Annual Enterprise Channel (Preview): Version 2008 (Build 13127.20408)
Semi-Annual Enterprise Channel: Version 2002 (Build 12527.21104)
Semi-Annual Enterprise Channel: Version 1908 (Build 11929.20946)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.21104)
Office 2019 Retail: Version 2008 (Build 13127.20408)
Office 2016 Retail: Version 2008 (Build 13127.20408)
Office 2019 Volume Licensed: Version 1808 (Build 10366.20016)

Excel

Word

Office Suite

August 11, 2020

Current Channel: Version 2007 (Build 13029.20344)
Monthly Enterprise Channel: Version 2006 (Build 13001.20520)
Monthly Enterprise Channel: Version 2005 (Build 12827.20656)
Semi-Annual Enterprise Channel (Preview): Version 2002 (Build 12527.20988)
Semi-Annual Enterprise Channel: Version 2002 (Build 12527.20988)
Semi-Annual Enterprise Channel: Version 1908 (Build 11929.20934)
Semi-Annual Enterprise Channel: Version 1902 (Build 11328.20644)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.20988)
Office 2019 Retail: Version 2007 (Build 13029.20344)
Office 2016 Retail: Version 2007 (Build 13029.20344)
Office 2019 Volume Licensed: Version 1808 (Build 10364.20059)

Access

Excel

Outlook

Word

Office Suite

July 14, 2020

Current Channel: Version 2006 (Build 13001.20384)
Monthly Enterprise Channel: Version 2005 (Build 12827.20538)
Monthly Enterprise Channel: Version 2004 (Build 12730.20602)
Semi-Annual Enterprise Channel (Preview): Version 2002 (Build 12527.20880)
Semi-Annual Enterprise Channel: Version 2002 (Build 12527.20880)
Semi-Annual Enterprise Channel: Version 1908 (Build 11929.20904)
Semi-Annual Enterprise Channel: Version 1902 (Build 11328.20624)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.20880)

Excel

Outlook

Project

Word

Office Suite

June 09, 2020

Current Channel: Version 2005 (Build 12827.20336)
Monthly Enterprise Channel: Version 2004 (Build 12730.20430)
Monthly Enterprise Channel: Version 2003 (Build 12624.20708)
Semi-Annual Enterprise Channel (Preview): Version 2002 (Build 12527.20720)
Semi-Annual Enterprise Channel: Version 1908 (Build 11929.20838)
Semi-Annual Enterprise Channel: Version 1902 (Build 11328.20602)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.20720)

Excel

Outlook

Project

Office Suite

May 12, 2020

Monthly Channel: Version 2004 (Build 12730.20270)
Monthly Enterprise Channel: Version 2003 (Build 12624.20588)
Semi-Annual Channel (Targeted): Version 2002 (Build 12527.20612)
Semi-Annual Channel: Version 1908 (Build 11929.20776)
Semi-Annual Channel: Version 1902 (Build 11328.20586)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.20612)

Excel

April 14, 2020

Monthly Channel: Version 2003 (Build 12624.20442)
Semi-Annual Channel (Targeted): Version 2002 (Build 12527.20442)
Semi-Annual Channel: Version 1908 (Build 11929.20708)
Semi-Annual Channel: Version 1902 (Build 11328.20564)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.20442)

Excel

Word

Office Suite

March 10, 2020

Monthly Channel: Version 2002 (Build 12527.20278)
Semi-Annual Channel (Targeted): Version 2002 (Build 12527.20278)
Semi-Annual Channel: Version 1908 (Build 11929.20648)
Semi-Annual Channel: Version 1902 (Build 11328.20554)
Microsoft 365 Apps on Windows 7: Version 2002 (Build 12527.20278)

Word

February 11, 2020

Monthly Channel: Version 2001 (Build 12430.20264)
Semi-Annual Channel (Targeted): Version 1908 (Build 11929.20606)
Semi-Annual Channel: Version 1908 (Build 11929.20606)
Semi-Annual Channel: Version 1902 (Build 11328.20526)
Semi-Annual Channel: Version 1808 (Build 10730.20438)

Excel

Outlook

Office Suite

January 14, 2020

Monthly Channel: Version 1912 (Build 12325.20298)
Semi-Annual Channel (Targeted): Version 1908 (Build 11929.20562)
Semi-Annual Channel: Version 1908 (Build 11929.20562)
Semi-Annual Channel: Version 1902 (Build 11328.20512)
Semi-Annual Channel: Version 1808 (Build 10730.20432)

Excel

Office Suite

December 10, 2019

Monthly Channel: Version 1911 (Build 12228.20364)
Semi-Annual Channel (Targeted): Version 1908 (Build 11929.20516)
Semi-Annual Channel: Version 1902 (Build 11328.20492)
Semi-Annual Channel: Version 1808 (Build 10730.20426)

Excel

PowerPoint

Word

Office Suite

November 12, 2019

Monthly Channel: Version 1910 (Build 12130.20344)
Semi-Annual Channel (Targeted): Version 1908 (Build 11929.20436)
Semi-Annual Channel: Version 1902 (Build 11328.20468)
Semi-Annual Channel: Version 1808 (Build 10730.20416)

Excel

Office Suite

October 08, 2019

Monthly Channel: Version 1909 (Build 12026.20320)
Semi-Annual Channel (Targeted): Version 1908 (Build 11929.20388)
Semi-Annual Channel: Version 1902 (Build 11328.20438)
Semi-Annual Channel: Version 1808 (Build 10730.20386)

Excel

September 10, 2019

Monthly Channel: Version 1908 (Build 11929.20300)
Semi-Annual Channel (Targeted): Version 1908 (Build 11929.20300)
Semi-Annual Channel: Version 1902 (Build 11328.20420)
Semi-Annual Channel: Version 1808 (Build 10730.20380)

Excel

Office Suite

August 13, 2019

Monthly Channel: Version 1907 (Build 11901.20218)
Semi-Annual Channel (Targeted): Version 1902 (Build 11328.20392)
Semi-Annual Channel: Version 1902 (Build 11328.20392)
Semi-Annual Channel: Version 1808 (Build 10730.20370)
Semi-Annual Channel: Version 1803 (Build 9126.2432)

Outlook

Word

Office Suite

July 09, 2019

Monthly Channel: Version 1906 (Build 11727.20244)
Semi-Annual Channel (Targeted): Version 1902 (Build 11328.20368)
Semi-Annual Channel: Version 1902 (Build 11328.20368)
Semi-Annual Channel: Version 1808 (Build 10730.20360)
Semi-Annual Channel: Version 1803 (Build 9126.2428)

Excel

Outlook

Skype for Business

Office Suite

June 11, 2019

Monthly Channel: Version 1905 (Build 11629.20246)
Semi-Annual Channel (Targeted): Version 1902 (Build 11328.20318)
Semi-Annual Channel: Version 1808 (Build 10730.20348)
Semi-Annual Channel: Version 1803 (Build 9126.2388)

Word

May 14, 2019

Monthly Channel: Version 1904 (Build 11601.20204)
Semi-Annual Channel (Targeted): Version 1902 (Build 11328.20286)
Semi-Annual Channel: Version 1808 (Build 10730.20344)
Semi-Annual Channel: Version 1803 (Build 9126.2387)

Word

Office Suite

April 09, 2019

Monthly Channel: Version 1903 (Build 11425.20204)
Semi-Annual Channel (Targeted): Version 1902 (Build 11328.20230)
Semi-Annual Channel: Version 1808 (Build 10730.20334)
Semi-Annual Channel: Version 1803 (Build 9126.2382)

Excel

Microsoft Office Update Free

Office Suite

March 12, 2019

There are no security updates for any channel this month.

February 12, 2019

Monthly Channel: Version 1901 (Build 11231.20174)
Semi-Annual Channel (Targeted): Version 1808 (Build 10730.20280)
Semi-Annual Channel: Version 1808 (Build 10730.20280)
Semi-Annual Channel: Version 1803 (Build 9126.2356)
Semi-Annual Channel: Version 1708 (Build 8431.2372)

Excel

Office suite

January 8, 2019

Monthly Channel: Version 1812 (Build 11126.20196)
Semi-Annual Targeted Channel: Version 1808 (Build 10730.20264)
Semi-Annual Channel: Version 1808 (Build 10730.20264)
Semi-Annual Channel: Version 1803 (Build 9126.2351)
Semi-Annual Channel: Version 1708 (Build 8431.2366)

Outlook

Word: Security updates

Office suite: Security updates

December 11, 2018

Monthly Channel: Version 1811 (Build 11029.20108)
Semi-Annual Channel: Version 1803 (Build 9126.2336)
Semi-Annual Channel (Targeted): Version 1808 (Build 10730.20262)

Excel

Outlook

PowerPoint

November 13, 2018

Monthly Channel: Version 1810 (Build 11001.20108)
Semi-Annual Channel: Version 1803 (Build 9126.2315)
Semi-Annual Channel (Targeted): Version 1808 (Build 10730.20205)

Update Microsoft Office 2007 To 2010 Free

Excel:

Outlook:

Project:

Skype for Business:

Word:





broken image