When Office updates cause issues on your Windows 11 system, the typical uninstall process through Control Panel may not always work. This guide explores advanced methods to remove Office updates using the command line, giving you more control over your Office installation.
Before we dive into the command-line methods, it’s important to understand that not all Office updates can be uninstalled. Service packs, Office Server product updates, and some shared component updates are typically permanent. However, for other updates, we have solutions.
Method 1: Using Windows Installer Command Line
This method works for MSI-based Office installations. Here’s how to use it:
Step 1: Open Command Prompt as administrator. Press Win + X and select “Windows Terminal (Admin)”.
Step 2: Use the following command structure to uninstall an update:
msiexec /package {product_code} /uninstall "full_path_to_.msp_file" /qb
Replace {product_code} with the Office product’s GUID and full_path_to_.msp_file with the update package’s location.
Step 3: If the update isn’t removable, you’ll see a message saying “Uninstallation of the patch package is not supported.” In this case, try the next method.
Method 2: Alternative Command for Office Updates
This method provides another approach to uninstalling Office updates:
Step 1: Open Command Prompt as administrator.
Step 2: Run the following command:
%windir%\System32\msiexec.exe /package {Office GUID} /uninstall {Update GUID} /QN
You’ll need to replace {Office GUID} with your Office version’s GUID and {Update GUID} with the specific update’s GUID.
Step 3: To find these GUIDs, you may need to check the Windows registry or consult Microsoft’s documentation for your specific Office version.
Reverting Click-to-Run Office Installations
For Click-to-Run installations like Microsoft 365, you can’t uninstall individual updates. Instead, you can revert to a previous build:
Step 1: Disable automatic updates. Open any Office app, go to File > Account > Update Options > Disable Updates.
Step 2: Open Command Prompt as administrator.
Step 3: Navigate to the ClickToRun directory with this command:
cd %programfiles%\Common Files\Microsoft Shared\ClickToRun\
Step 4: Run the following command to revert to a specific build:
officec2rclient.exe /update user updatetoversion=BuildNumber
Replace BuildNumber with the version you want to revert to. You can find build numbers in Microsoft’s update history documentation for your Office version.
Step 5: Wait for the process to complete. You’ll see dialogs for checking updates, downloading, and installation.
Step 6: After reverting, remember to re-enable automatic updates to ensure you receive future security patches.
While these methods provide powerful tools for managing Office updates, use them cautiously. Always back up your data before making system changes, and consider seeking professional help for critical systems. Keep in mind that staying updated is generally the best practice for security and functionality.