You see Word error 0x800a03ec when you try to open a macro-enabled template (.dotm file). This error typically means Word cannot load the template due to a corrupted file, a blocked macro setting, or a damaged Normal.dotm global template. The error can also appear when the template references objects or code that Word can no longer process.
This article explains the three main causes of error 0x800a03ec and provides step-by-step fixes for each. You will learn how to unblock the file, repair the template, and reset the Normal.dotm template. After applying these steps, you should be able to open the macro-enabled template without the error.
Key Takeaways: Fixing Word Error 0x800a03ec on Macro-Enabled Templates
- Right-click the .dotm file > Properties > General tab > Unblock: Removes the Mark of the Web that Word interprets as a security risk.
- File > Options > Trust Center > Trust Center Settings > Macro Settings > Enable all macros: Temporarily allows the template to load so you can test if macros are the cause.
- File > Open > Browse > select the .dotm file > Open and Repair: Tells Word to rebuild a corrupted template file, often fixing the error.
Why Word Shows Error 0x800a03ec on a Macro-Enabled Template
Error 0x800a03ec is a COM exception that Word raises when it cannot load a macro-enabled template. The error code maps to the message “Member not found” in the Visual Basic for Applications runtime. This means Word or the VBA engine tried to access a method, property, or object that does not exist in the current context.
The most common trigger is a template that was downloaded from the internet or received as an email attachment. Windows adds a hidden Mark of the Web zone identifier to files from outside the local machine. Word sees this mark and blocks the macros, which then prevents the template from loading correctly. When the macros are blocked, any code that runs during template initialization fails with the member-not-found error.
Another frequent cause is a corrupted Normal.dotm file. Normal.dotm is the global template that Word loads every time it starts. If Normal.dotm contains a reference to an add-in or a code library that is missing or broken, Word may fail to load any macro-enabled template that depends on that reference. The error then appears as 0x800a03ec.
A third cause is a mismatch between the template’s VBA project and the version of Word or the installed libraries. For example, a template written for Word 2010 may reference an ActiveX control that was removed in Word 2019 or Microsoft 365. When Word tries to instantiate that control, the VBA engine throws the member-not-found error.
Steps to Fix Error 0x800a03ec When Opening a Macro-Enabled Template
Perform these fixes in the order shown. Test the template after each fix to see if the error is resolved.
Fix 1: Unblock the Template File
- Locate the .dotm file
Open File Explorer and navigate to the folder that contains the macro-enabled template. - Open file Properties
Right-click the .dotm file and select Properties from the context menu. - Go to the General tab
In the Properties dialog, click the General tab. Look for a Security section at the bottom of the tab. - Check the Unblock checkbox
If you see the message “This file came from another computer and might be blocked to help protect this computer,” check the Unblock box. If the Unblock box is missing, the file is already unblocked. - Click OK
Click OK to close the Properties dialog. Try opening the template again in Word.
Fix 2: Enable All Macros Temporarily
- Open Trust Center
In Word, go to File > Options > Trust Center, then click Trust Center Settings. - Select Macro Settings
In the left pane of the Trust Center dialog, click Macro Settings. - Choose Enable all macros
Select the option Enable all macros (not recommended; potentially dangerous code can run). This setting lets the template load without macro blocking. - Check the Trust access to the VBA project object model box
Below the macro settings, check the box labeled Trust access to the VBA project object model. This gives Word permission to access the VBA code in the template. - Click OK twice
Click OK in the Trust Center dialog, then click OK in the Options dialog. Try opening the template again. If the error disappears, the problem was macro blocking. After testing, return to Trust Center and set macro settings back to Disable all macros with notification.
Fix 3: Use Open and Repair on the Template
- Open the Open dialog
In Word, go to File > Open > Browse. - Select the template file
Navigate to the .dotm file. Click once on the file to select it. - Click the Open dropdown arrow
On the Open button, click the small down arrow on the right side. A menu appears. - Choose Open and Repair
From the menu, select Open and Repair. Word attempts to repair the template and then opens it. If the repair succeeds, save the template with a new name using File > Save As.
Fix 4: Reset the Normal.dotm Global Template
- Close Word completely
Make sure all Word windows are closed. - Open File Explorer to the Templates folder
Press Windows key + R, type%appdata%\Microsoft\Templates, and press Enter. This opens the folder where Normal.dotm is stored. - Rename Normal.dotm
Right-click Normal.dotm and choose Rename. TypeNormal.oldand press Enter. If you cannot see the .dotm extension, enable file name extensions in the View tab of File Explorer. - Start Word
Open Word. Word creates a fresh Normal.dotm with default settings. Try opening the macro-enabled template again.
If Word Still Has Issues After the Main Fix
Word Error 0x800a03ec Appears Only on One Specific Template
If the error occurs only with a single .dotm file and all other templates open fine, the template itself is corrupted. Use Open and Repair as described in Fix 3. If repair fails, ask the template author to export the VBA code from the original project and re-create the template in a new .dotm file. You can also try copying the content from the broken template into a new blank template: open a new template, go to Insert > Object > Text from File, and select the broken .dotm file. This imports the text and formatting but may drop the macros.
Word Error 0x800a03ec Appears Every Time Word Starts
This indicates that an add-in or a startup template is failing. First, reset Normal.dotm as shown in Fix 4. If the error persists, disable all COM add-ins: go to File > Options > Add-Ins, select COM Add-ins from the Manage dropdown, click Go, and uncheck all add-ins. Restart Word. If the error stops, re-enable add-ins one at a time to identify the culprit.
Word Error 0x800a03ec After Installing a Windows Update
A Windows or Office update can change the VBA runtime or deprecate a library. Run Office repair: go to Control Panel > Programs > Programs and Features, right-click Microsoft 365 or Office, select Change, and choose Quick Repair. If that does not fix the error, run Online Repair. After repair, download and install the latest Office updates from File > Account > Update Options > Update Now.
Macro-Enabled Template (.dotm) vs Word Document (.docm) vs Word Template (.dotx)
| Item | .dotm (Macro-Enabled Template) | .docm (Macro-Enabled Document) | .dotx (Word Template, No Macros) |
|---|---|---|---|
| File type | Template with VBA macros | Document with VBA macros | Template without macros |
| Macro support | Yes | Yes | No |
| Opens as | New document based on template | The document itself | New document based on template |
| Error 0x800a03ec likelihood | High, due to macro blocking or corruption | Medium, same causes | Low, no macro code to fail |
Now you can fix error 0x800a03ec by unblocking the file, enabling macros temporarily, repairing the template, or resetting Normal.dotm. If the error returns, run Office Online Repair to restore the VBA runtime. As an advanced tip, use the VBA Immediate window in the Visual Basic Editor to debug the exact member that fails: open the template, press Alt+F11, and type debug.print Err.Description after the error occurs to see the missing object name.