惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
J
Java Code Geeks
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
L
LangChain Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
Martin Fowler
Martin Fowler
月光博客
月光博客
Y
Y Combinator Blog
U
Unit 42
D
Docker
Recent Announcements
Recent Announcements
Hugging Face - Blog
Hugging Face - Blog
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Windows Secretly Ate 83GB of My Disk Space — The Hidden ....
Dhaval Upadhyay · 2026-05-18 · via DEV Community

Dhaval Upadhyay

A few days ago my Windows PC had around 57GB free space.

Suddenly it dropped to:

  • 4GB free
  • then 2GB free

The weird part:

I had not installed any new software
no large downloads
temp files cleanup barely recovered MBs

At first I thought:

  • Windows Update issue
  • Docker issue
  • browser cache
  • restore points

But the real culprit was something I had never seen before.

How I Found the Problem

I installed:

  • WinDirStat

After scanning the C: drive, I noticed:

ProgramData = 100GB+

Digging deeper revealed this monster:

C:\ProgramData\Microsoft\Windows\CapabilityAccessManager\CapabilityAccessManager.db-wal

File size: 83 GB

Yes. A single hidden Windows WAL file had silently consumed my disk.

What Is CapabilityAccessManager.db-wal?

It’s a SQLite WAL (Write-Ahead Logging) file used by Windows.

Related service:

Capability Access Manager Service (camsvc)

Windows uses it for:

  • microphone access logs
  • camera permissions
  • location/app capability tracking

Normally this file should only be a few MB.

In my case it became corrupted or stuck and kept growing endlessly.

Symptoms

If this happens on your PC, you may notice:

  • rapidly decreasing free disk space
  • system becoming slow
  • applications crashing
  • Windows warnings about low storage
  • no obvious large downloads

How I Fixed It

Step 1 — Open CMD as Administrator

Run:

net stop camsvc

Step 2 — Delete the Huge WAL File

C:\ProgramData\Microsoft\Windows\CapabilityAccessManager\CapabilityAccessManager.db-wal

Do NOT delete:

CapabilityAccessManager.db

Step 3 — Start Service Again

net start camsvc

Important Notes

This file is:

temporary log data
automatically recreated by Windows if needed

Deleting the .db-wal file does NOT damage Windows.

But avoid deleting the main .db file unless rebuilding the database intentionally.

Final Thoughts

This was one of the strangest Windows storage bugs I’ve encountered.

The scary part is:

  • Windows hides the folder
  • normal cleanup tools don’t show the issue
  • the file can silently grow to tens of GB

So if your disk space suddenly disappears for “no reason”, check for hidden WAL files before reinstalling Windows.