Cause 1: Normal.dotm is missing or corrupt (the usual suspect)
Nine times out of ten, the error lands because Normal.dotm got deleted, renamed, or corrupted. What's actually happening here is Word tries to load its global template every time it starts. If that file is gone or unreadable, Word throws the "could not find the file" message and sometimes refuses to open anything at all.
Things that cause this in the real world: a crashed Word session that left a half-written Normal.dotm behind, an aggressive "PC cleanup" tool that deleted it, or a macro that overwrote it with garbage. I've seen it happen right after a Windows update killed Word mid-save.
You don't need to hunt down the file. The fix is to let Word rebuild it. Close Word completely, then rename the existing template out of the way.
- Press
Win + R, type%appdata%\Microsoft\Templates, hit Enter. - Find
Normal.dotm. - Rename it to
Normal.old(or just delete it). - Reopen Word. It creates a fresh Normal.dotm automatically.
The reason step 3 works is that Word will not rebuild the template if one already sits there. It assumes the existing file is fine and loads it. Moving it out of the folder forces a clean regeneration.
If you're on a domain-joined machine, check %appdata%\Microsoft\Templates for your user profile, not the shared one. They are not the same folder and Word only reads the one matching the logged-in user.
Cause 2: The Templates folder path is wrong or the folder is gone
Word stores the location of your user templates in the registry. If that path points to a folder that doesn't exist — a drive that got remapped, a user profile that was copied to a new machine, or a redirected folder that lost its network share — Word can't find Normal.dotm even though it's sitting somewhere on disk.
A common trigger: IT migrates your profile to a new PC and rewrites %appdata% to a different drive letter. Word keeps looking at the old path.
Check the setting inside Word first:
- File > Options > Advanced.
- Scroll to the General section.
- Click File Locations.
- Select User templates and click Modify.
- Point it at a folder that exists, like
C:\Users\YourName\AppData\Roaming\Microsoft\Templates.
If Word won't even launch far enough to show that dialog, edit the registry directly. Close Word, then find:
HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\General
Look for a value named UserTemplates. Set it to the correct folder path. The version number changes (15.0 for Office 2013, 16.0 for 2016 through 365), so pick the one matching your install.
Cause 3: Permissions block Word from reading the template
Here's the one that wastes people's afternoons. Normal.dotm is right where it should be, the path is correct, and Word still can't read it — because the logged-in account doesn't have read access to that folder. This shows up constantly on shared machines, after a Windows reset that rebuilt user profiles, or when a security tool locked the Templates folder down.
To check, right-click Normal.dotm, choose Properties, then the Security tab. Your account needs at least Read and Write. If it's missing, add yourself explicitly:
icacls "%appdata%\Microsoft\Templates" /grant "%username%:(OI)(CI)F" /T
That grants full control recursively. Run it from a normal command prompt — not elevated — so the permissions apply to your account, not the admin one.
Another angle: if the file is marked read-only, Word often reports it as missing rather than locked. Uncheck Read-only in the file's Properties dialog, or run:
attrib -r "%appdata%\Microsoft\Templates\Normal.dotm"
Cause 4: A leftover Word process or add-in is holding the file
Less common, but it happens. A zombie WINWORD.EXE process from a crashed session keeps a lock on Normal.dotm. Word can't load a locked file and reports it as not found. Check Task Manager — if you see WINWORD.EXE running with no visible Word window, end it, then reopen Word.
Same story with add-ins that hook into startup. Disable them temporarily via File > Options > Add-ins > Manage COM Add-ins > Go, then uncheck everything. If the error stops, re-enable them one at a time to find the culprit. Third-party grammar and PDF add-ins are the usual offenders.
Quick reference
| Symptom | Likely cause | Fix |
|---|---|---|
| Word opens with error every time | Normal.dotm missing or corrupt | Rename file in %appdata%\Microsoft\Templates, restart Word |
| Error after profile migration | Wrong Templates folder path | Fix path in File Locations or registry UserTemplates value |
| Error on shared or reset machine | Missing folder permissions | Grant Read/Write with icacls or Security tab |
| Error only sometimes | Locked file or rogue add-in | Kill WINWORD.EXE, disable add-ins, restart |
Start with the rename. It clears up most cases before you ever touch the registry.