When you select a Word, Excel, or PowerPoint file in Windows 11 File Explorer, the preview pane may stay blank or show a placeholder icon instead of the document content. This problem often occurs after a Microsoft 365 update, a Windows update, or corruption in the preview handler registration. The preview pane depends on specific shell extensions that can stop working when file associations or registry entries are damaged. This article explains the technical reasons behind the blank preview pane and provides step-by-step methods to restore document previews for Office files.
Key Takeaways: Restoring Office File Previews in File Explorer
- File Explorer > View > Preview pane: Enables or disables the preview pane; verify it is turned on before troubleshooting
- Settings > Apps > Installed apps > Microsoft 365 > Modify > Quick Repair: Repairs Office installation without uninstalling and often fixes preview handlers
- Command Prompt (Admin) with
regsvr32commands: Re-registers the Office preview handler DLLs to restore file previews
Why Office File Previews Stop Working in Windows 11 File Explorer
File Explorer uses preview handlers — small COM (Component Object Model) components — to generate thumbnails and previews for specific file types. Microsoft Office installs its own preview handler DLLs that tell Windows how to render .docx, .xlsx, .pptx, and other Office formats in the preview pane. When these DLLs become unregistered, corrupted, or blocked by a Windows update, the preview pane falls back to displaying a generic icon or a blank area.
The primary causes include:
- Office update changes: A Microsoft 365 update may replace or remove preview handler files without re-registering them properly.
- Windows 11 update interference: A cumulative update or feature update can change security policies that affect how third-party preview handlers load.
- File association corruption: If the file association for .docx or .xlsx is broken, File Explorer may not know which preview handler to use.
- Registry damage: The registry keys under
HKEY_CLASSES_ROOT\CLSIDthat point to the preview handler DLLs can be missing or incorrect.
Understanding that the problem is almost always a registration issue rather than a file corruption issue helps you choose the correct fix. The solutions below focus on repairing the Office installation and re-registering the preview handler DLLs.
Steps to Fix a Blank Preview Pane for Office Files in Windows 11
Follow these methods in order. Each method addresses a different root cause. Test the preview pane after each step by selecting an Office file in File Explorer with the preview pane enabled.
Method 1: Verify the Preview Pane Is Enabled and Restart File Explorer
- Open File Explorer
Press Windows + E to open File Explorer. - Enable the preview pane
Click the View menu on the toolbar. In the Show group, click Preview pane. A checkmark indicates it is enabled. - Restart File Explorer
Press Ctrl + Shift + Escape to open Task Manager. Find Windows Explorer in the Processes list, right-click it, and select Restart. This refreshes all shell extensions without restarting your PC. - Test the preview
Navigate to a folder containing a Word or Excel file. Single-click the file and check the preview pane on the right side of the window.
Method 2: Run Office Quick Repair
The Quick Repair option reinstalls Office components without removing your files or settings. It often fixes missing or unregistered preview handlers.
- Open Windows Settings
Press Windows + I to open Settings. - Go to Installed apps
Navigate to Apps > Installed apps. - Find Microsoft 365
Scroll to Microsoft 365 or Microsoft Office in the list. Click the three-dot menu next to it and select Modify. - Choose Quick Repair
In the Office repair window, select Quick Repair and click Repair. Windows will download and reinstall necessary Office files. This takes about 5 minutes. - Restart your PC
After the repair finishes, restart your computer. Open File Explorer and test the preview pane.
Method 3: Re-register Office Preview Handler DLLs
If Quick Repair does not work, the preview handler DLLs may still be present but not registered in the Windows Registry. Re-registering them manually forces Windows to recognize them again.
- Open Command Prompt as Administrator
Press Windows + X and select Terminal (Admin) or Command Prompt (Admin). Click Yes on the User Account Control prompt. - Run the regsvr32 commands
Copy and paste each of the following commands one at a time, pressing Enter after each:regsvr32 /s "C:\Program Files\Microsoft Office\root\vfs\ProgramFilesCommonX64\Microsoft Shared\OFFICE16\MSOXMLED.EXE"regsvr32 /s "C:\Program Files\Microsoft Office\root\vfs\ProgramFilesCommonX64\Microsoft Shared\OFFICE16\MSOPRVW.DLL"regsvr32 /s "C:\Program Files\Microsoft Office\root\vfs\ProgramFilesCommonX64\Microsoft Shared\OFFICE16\MSOPRHS.DLL" - Confirm success
Each command should pop up a dialog saying DllRegisterServer succeeded. If you see an error, the file path may be different for your Office version. - Restart File Explorer
Open Task Manager, right-click Windows Explorer, and select Restart. Test the preview pane.
Method 4: Reset File Explorer Settings to Default
Corrupted File Explorer view settings can prevent the preview pane from displaying content. Resetting the folder view settings clears this corruption without affecting other system settings.
- Open File Explorer Options
In File Explorer, click the three-dot menu on the toolbar and select Options. - Reset folders
In the General tab, click Clear under Privacy to clear File Explorer history. Then click Restore Defaults. - Apply and restart
Click Apply and then OK. Restart File Explorer using Task Manager and test the preview.
If Office File Previews Still Do Not Appear
Preview pane works for images but not for Office files
If image files (PNG, JPG) show previews correctly but Office files do not, the problem is specific to the Office preview handler. Run the Office Quick Repair as described in Method 2. If that fails, uninstall Microsoft 365 completely using Settings > Apps > Installed apps > Microsoft 365 > Uninstall and then reinstall from office.com.
Preview pane is completely blank for all file types
When no file type shows a preview, the preview pane itself may be disabled or a third-party shell extension is blocking it. Open File Explorer, click View > Show > Preview pane to ensure it is toggled on. If it is already on, try disabling non-Microsoft shell extensions using Autoruns from Microsoft Sysinternals or by running a clean boot.
“This file cannot be previewed” error message
This message indicates that the preview handler is installed but cannot process the file. The file may be corrupt or password-protected. Try opening the file in its Office application to verify it is intact. If the file opens correctly, the preview handler registration is still the issue — repeat Method 3.
Quick Repair vs Online Repair: Differences for Office Preview Issues
| Item | Quick Repair | Online Repair |
|---|---|---|
| Duration | 5 to 10 minutes | 30 to 60 minutes |
| Internet requirement | Downloads only missing files | Downloads full installation package |
| User data affected | No user data or settings removed | No user data or settings removed |
| Effectiveness for preview handlers | Fixes most registration issues | Fixes severe corruption including registry errors |
| When to use | First repair attempt | If Quick Repair fails |
Start with Quick Repair because it is faster and preserves your settings. If the preview pane remains blank after Quick Repair, run Online Repair. Online Repair requires a stable internet connection and may take up to an hour, but it replaces all Office files and registry entries.
After completing this article, you can restore Office file previews in Windows 11 File Explorer by verifying the preview pane is enabled, running Office Quick Repair, or re-registering the preview handler DLLs. For persistent problems, run an Online Repair or use the regsvr32 commands for all Office DLLs in the OFFICE16 folder. As an advanced tip, you can automate the registration step by saving the three regsvr32 commands into a .bat file and running it as administrator whenever previews stop working after an update.