Hi @Vincent Swanson ,
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.
This error typically indicates that the Azure DevOps Office Integration add-in is failing to load due to a registry configuration issue or an assembly binding conflict (often with Newtonsoft.Json).
Since you have already tried repairing Office and re-enabling the add-in without success, please follow these advanced troubleshooting steps from the official Microsoft documentation:Resolve Azure DevOps and Office integration issues
Step 1: Force the Add-in to Load via Registry The LoadBehavior registry key determines how the add-in loads. If it is set to 0, the add-in is disabled.
- Open Registry Editor (
regedit). - Navigate to the following path (if
16is not present, check for the highest version number available):HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\Excel\Addins\TFCOfficeShim.Connect.16 - Double-click LoadBehavior and set the Value data to 3.
- Click
OKand restart Excel.
Note: If the key does not exist under HKEY_CURRENT_USER, check HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\Excel\Addins.
Step 2: Resolve Assembly Binding Conflicts (TF80070)
If the registry fix does not work, the crash may be caused by a version conflict with the Newtonsoft.Json library. You can resolve this by creating a configuration file for Excel.
- Navigate to your Excel installation folder. Typical paths include:
- Microsoft 365 / Office 2016+:
C:\Program Files\Microsoft Office\root\Office16\
- Microsoft 365 / Office 2016+:
- Open Notepad as an Administrator.
- Paste the following XML content:
<?xml version="1.0" encoding="utf-8"?> <configuration> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30AD4FE6B2A6AEED" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="13.0.0.0"/> </dependentAssembly> </assemblyBinding> </runtime> </configuration> - Save the file in the Excel installation folder as
excel.exe.config.- Important: Ensure the file is not saved as
excel.exe.config.txt.
- Important: Ensure the file is not saved as
- Restart Excel and try to connect again.
Step 3: Clear Team Foundation Cache If the issue persists, cached data may be corrupted.
- Close Excel.
- Delete the contents of the following folder:
%LOCALAPPDATA%\Microsoft\Team Foundation\x.0\Cache(Replacex.0with your highest version folder, e.g.,7.0,8.0).