0X000010E2

Fix ERROR_LIBRARY_FULL (0X000010E2) – Library full on Windows

This error means some Windows data store or cache hit its limit. Quick fix: reboot. If that fails, clean the store or expand it.

What actually causes ERROR_LIBRARY_FULL?

This error code (0X000010E2) pops up when a Windows data store—like the print spooler cache, event log, or certificate store—reaches its capacity. I've seen it most often on a client's Windows 10 machine that had a corrupted print queue backing up thousands of failed jobs. The error message itself is vague, so you've got to pin down which library is full.

Start here: 30-second fix

Reboot and retry

Before you do anything else, save your work and restart the computer. A reboot clears temporary caches and resets services. If the error was from a one-time hiccup (like a print job that jammed), it'll vanish. This works about 20% of the time, and it's free.

5-minute fix: Clear the print spooler cache

If rebooting didn't help, the print spooler is the number one suspect. That library holds pending print jobs, and if one gets stuck, it can fill up fast.

  1. Open Services: press Win + R, type services.msc, hit Enter.
  2. Find Print Spooler, right-click it, and choose Stop.
  3. Open File Explorer and go to C:\Windows\System32\spool\PRINTERS.
  4. Delete everything in that folder. Don't worry—these are just pending print jobs.
  5. Go back to Services, right-click Print Spooler, and click Start.

Had a client last month whose entire print queue died because of this. After clearing that folder and restarting the service, her printer worked fine. If you're still seeing the error, move on.

15+ minute fix: Clean the event logs or expand the store

Option A: Clear Windows event logs

Event logs can fill up too, especially on servers. Here's how to check and clear them:

  1. Open Event Viewer: press Win + R, type eventvwr.msc, hit Enter.
  2. Expand Windows Logs.
  3. Look at the size of each log (Application, Security, System, etc.). If any are over 1 GB, they're likely full.
  4. Right-click the log and choose Clear Log.
  5. When asked, select Save and Clear only if you need to keep the log for auditing. Otherwise, pick Clear.

The real fix here is to set a max log size so this doesn't happen again. Right-click the log, go to Properties, set the Maximum log size to something reasonable like 20 MB, and choose Overwrite events as needed.

Option B: Check the certificate store

Less common, but if your company uses digital certificates heavily (like for remote access or code signing), the certificate store can hit its limit. Open the Microsoft Management Console with the Certificates snap-in. Look under Personal > Certificates. Delete expired or unused certs. I've seen this on a Windows Server 2019 that had thousands of expired certs from a misconfigured auto-enrollment policy.

Option C: Run Disk Cleanup to free up system space

A full system drive can indirectly cause this error. The library might be a temporary file directory that's out of room. Run Disk Cleanup:

  1. Open File Explorer, right-click C:, and select Properties.
  2. Click Disk Cleanup.
  3. Check Temporary files, Delivery Optimization Files, and Windows Update Cleanup.
  4. Click OK and confirm.

Option D: Increase the library size (advanced)

If you're dealing with a custom application using a named library (like a database or a memory-mapped file), you might need to increase its size. This requires registry or configuration changes specific to the app—I can't give a one-size-fits-all command here. Check the application's documentation for a "max size" setting. For example, with the Windows print spooler, you can't directly increase the spool folder size; you just clear it.

Final sanity check

After clearing the print spooler or event logs, restart your computer one more time. The error should be gone. If it's not, you're likely dealing with a corrupted system file or a third-party app that's filling a library continuously. Run sfc /scannow from an elevated command prompt to repair system files, or check the application that triggered the error.

Bottom line: this error is almost always a full cache or log. Start with the 30-second reboot, then clear the spooler, then event logs. You'll fix it in under 15 minutes, no need to reinstall Windows.

Related Errors in Windows Errors
0XC014000B STATUS_ACPI_INCORRECT_ARGUMENT_COUNT Fix (0xC014000B) 0XC00D32DC NS_E_METADATA_INVALID_DOCUMENT_TYPE (0XC00D32DC) – metadata document is invalid 0XC00D276D Fix DRM Error 0XC00D276D: Metering Object Creation Failed 0X000032CB Fix ERROR_IPSEC_MM_POLICY_EXISTS (0X000032CB) Fast

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.