This article describes how to revert to a previous version of Microsoft Office if some apps stop working in your environment after installing the latest update. Rolling back to an earlier MS Office version is often much easier than locating and troubleshooting the problem. This article applies to C2R versions of Office 2021, 2019, 2016, and Microsoft 365 Apps.
In the scenarios with an MSI version of Office, if an update causes a problem, you can simply uninstall the most recently installed Office update by going to Settings -> Windows Update -> Update History -> Uninstall Updates. But this doesn’t work with the C2R versions of MS Office that are most common today.
To check which version of Office is installed (C2R or MSI), start any Office application (for example, Word) and choose File -> Account. For example, I have the MS Office 2019 Click-to-Run (C2R) version installed on my computer. Click the About button to find out the current build number (you will need this later). In this example, MS Office 2019, version 2412, build 16.0.18324.20044
is installed on a computer.
Next, check your Office Update channel. The UpdateBranch parameter under the HKLM\software\policies\microsoft\office\16.0\common\officeupdate
registry key contains the name of the current update channel. In my example, the product is in the “Current” update channel.
If you want to revert back to a previous build (version) of Office, first disable the auto-update feature. Go to File -> Account -> Update Options, and select Disable Updates. If you don’t turn off automatic updates, Office will update itself to the latest available version.
Now find out the exact build number of the previous C2R version of Office that you want to roll back to.
- If you are using Office 2016 or 2019, go to https://learn.microsoft.com/en-us/officeupdates/update-history-office-2019
- Office 2021 (including LTSC) — https://learn.microsoft.com/en-us/officeupdates/update-history-office-2021
- Microsoft 365 Apps (ex-Office 365) — https://learn.microsoft.com/en-us/officeupdates/update-history-microsoft365-apps-by-date
In this case, the computer has Office 2019, version 2412, build 16.0.18324.20044 installed. I want to revert to the previous version of Office from 12 November. Copy its build number (18129.20158) and paste it into the string 16.0.xxxxx.yyyyy. The resulting line is 16.0.18129.20158
.
Now open a command prompt as an administrator and change to the directory:
cd %ProgramFiles%\Common Files\Microsoft Shared\ClickToRun\
In the following command, type the Office build number that you want to roll back to:
officec2rclient.exe /update user updatetoversion=<build number>
In my case, I will use the following command to install the previous version of Office:
officec2rclient.exe /update user updatetoversion=16.0.18129.20158
The C2R installer will download the files and install the specified Office version.
If you use the Office Deployment Tool (ODT) to install Office, you can downgrade to a specific build by adding the target version information to the XML configuration file:
<Configuration> <Updates Enabled="TRUE" TargetVersion="16.0.18129.20158" /> </Configuration>
Then proceed to install Office using the ODT:
setup.exe /configure configuration.xml
Don’t leave your Office in the auto-update disabled mode for too long. You could miss an important hotfix or security patch. Add a reminder to your calendar to turn on the Office automatic update at a specific time (for example, in a month) and check to see if the problem has been fixed.
To immediately update C2R MS Office to the latest available version, run the following command
OfficeC2RClient.exe /update USER