Skip to content
Follow
Windows 🟡 Intermediate

How to clear Windows 11 font cache when fonts appear blurry

Richard
Written by
Richard
Sep 24, 2026 5 min read
clear Windows 11 font cache
clear Windows 11 font cache

Clearing the Windows 11 font cache fixes blurry text, unreadable fonts, and missing characters by deleting damaged font index files stored in the operating system. Windows 11 stores a map of available typefaces in temporary files to load text faster, but these files often break after an unexpected shutdown, a bad software install, or adding and removing fonts.

Advertisement

When this cache breaks, you might see square boxes instead of letters, jagged web text, or apps that crash when you open menus. Deleting the corrupted files forces Windows to rebuild a fresh, clean list of every installed font on your drive.

⚡ Quick Answer

To clear Windows 11 font cache, open Services (a tool that manages background system programs), stop Windows Presentation Foundation Font Cache 3.0.0.0, delete the cache files inside 📁C:\Windows\ServiceProfiles\LocalService\AppData\Local and 📁C:\Windows\System32\FNTCACHE.DAT, and restart your computer to force Windows to rebuild clean font mapping data.

Advertisement

Stopping Font Cache Services

📝Good to KnowStopping font cache services in Windows 11 is necessary because background processes lock the temporary font files and prevent you from deleting them.

You must stop Windows Font Cache Service and Windows Presentation Foundation Font Cache 3.0.0.0 through the Services tool before you can clear the corrupted cache.

To stop the required service, you will use the Services snap-in.

  1. Open the Start menu , type services.msc, and press Enter to open Services (a tool that manages background system programs). Note: This step requires administrator privileges.
  2. Scroll down the list of services until you find Windows Presentation Foundation Font Cache 3.0.0.0 (a service that optimizes font performance for desktop apps).
  3. Right-click Windows Presentation Foundation Font Cache 3.0.0.0 and select Stop.
  4. If the service is already stopped, you can proceed directly to clearing the files.

Locating and Deleting Font Cache Files

Locating and deleting font cache files requires navigating to the hidden 📁C:\Windows\ServiceProfiles\LocalService\AppData\Local\FontCache folder in File Explorer . You need to delete all files ending with .dat and the FNTCACHE.DAT file to force Windows 11 to rebuild a fresh, uncorrupted font cache.

Open File Explorer and delete the cache files with these steps:

Advertisement
  1. Open File Explorer (the default file management application in Windows) from your taskbar or by pressing the Windows Key + E.
  2. Click the address bar at the top, paste C:\Windows\ServiceProfiles\LocalService\AppData\Local, and press Enter. (This directory houses protected local service data.)
  3. Locate the folder named FontCache.
  4. Open the FontCache folder.
  5. Select all files that begin with FontCache- and end with the .dat or .log extension. Note: Deleting system files incorrectly can cause software instability, so ensure you only select the specific font cache data files.
  6. Press the Delete key on your keyboard to remove the selected files. If Windows prompts you that a file is still in open use, make sure you successfully completed the service-stopping step in the previous section.

You may also find additional font cache files in C:\Windows\System32\FNTCACHE.DAT. Navigate to that specific file path in File Explorer, right-click FNTCACHE.DAT, and select Delete. This file stores global GDI (Graphics Device Interface) font mapping data separate from the LocalService profile.

Restarting Your Computer and Verifying the Fix

Restarting your computer after clearing the font cache forces Windows 11 to automatically generate a brand new set of clean font database files. Once your PC boots back up, open an app with text like Notepad or your web browser to check if the blurry font rendering problem is gone.

  1. Open the Start menu, click the Power icon, and select Restart.
  2. Restart your computer. During this startup sequence, Windows automatically detects the missing cache files and builds a new, clean version using your currently installed system fonts.
  3. Open a text-heavy application such as Notepad or Microsoft Word to verify that all system menus, toolbars, and web browsers render typography cleanly without artifacts or missing characters.

Automating Font Cache Clearing with PowerShell

Automating font cache clearing with Windows PowerShell lets you stop the required services and delete the locked .dat files using a quick command script. This saves you from manually opening File Explorer and hunting through hidden system folders every time your fonts appear blurry.

To run the cleanup script safely, you need to open PowerShell with administrative rights.

Advertisement
PowerShell
PowerShell
  1. Open the Start menu, type powershell, right-click Windows PowerShell, and select Run as administrator (a prompt requiring elevated security privileges). Note: This step requires administrator privileges.
  2. Type the following command to stop the font cache service and press Enter:Stop-Service -Name "FontCache3.0.0.0" -Force
  3. Type the following command to remove the primary font cache file and press Enter:Remove-Item -Path "C:\Windows\System32\FNTCACHE.DAT" -ErrorAction SilentlyContinue
  4. Type the following command to clear the LocalService font cache directory files and press Enter:Remove-Item -Path "C:\Windows\ServiceProfiles\LocalService\AppData\Local\FontCache\FontCache-*.dat" -Force -ErrorAction SilentlyContinue
  5. Restart your computer to complete the process and regenerate the cache files.

Advanced Troubleshooting for Persistent Font Rendering Issues

Advanced troubleshooting for persistent font rendering issues in Windows 11 involves scanning your system for damaged core files and checking display scaling settings. If clearing the cache fails, running built-in repair tools like the Deployment Image Servicing and Management tool usually fixes underlying system corruption.

You can check for underlying system file corruption by running the Deployment Image Servicing and Management tool alongside the System File Checker. Open an elevated command prompt and run DISM.exe /Online /Cleanup-image /Restorehealth, followed by sfc /scannow (a utility that scans and repairs damaged core Windows files). These commands scan your entire operating system storage drive and replace any broken system components that might be interfering with text rendering pipelines.

Additionally, check your installed fonts via the Settings app by navigating to Settings Personalization Fonts If you recently installed a damaged or improperly formatted OpenType or TrueType font file, it can trigger rendering failures across the entire user interface. Remove any recently added third-party typefaces to isolate whether a specific font file is causing the graphical glitch.

What to do next

With your font cache successfully cleared and your system restarted, your Windows 11 interface should display crisp, legible text across all menus and applications. If certain apps continue to show distorted characters, check the specific display scaling and clear type settings within your main system display configuration.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

Advertisement

📚 Related Tutorials

How to Clear Windows Thumbnail Cache in Windows 11
Windows How to Clear Windows Thumbnail Cache in Windows 11
How to reset Microsoft Store Cache in Windows 11
Windows How to reset Microsoft Store Cache in Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *