Share via

Temp Files Confusion

Andrew 20 Reputation points
2025-08-12T03:31:42.2266667+00:00

Hello

Please see the attached images.
I cannot understand what/where the 8 GB of Updates > Temp Files are.
And, how do I delete them?

"Choose which Temp Files to remove" only allows me to remove a few hundred MB in Recycle Bin, thumbnails etc...
Btw, I am updated.

Thank you
Andrew

Windows Storage1.png

Windows Storage2.png

Windows for home | Windows 10 | Files, folders, and storage
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Marcin Policht 81,395 Reputation points MVP Volunteer Moderator
    2025-08-12T03:38:45.89+00:00

    What you're seeing with “Updates > Temporary Files” in Windows is basically leftover files that Windows Update uses during the installation process — such as:

    • Windows Update download cache (packages downloaded before/after install).
    • Old update installation logs.
    • Staging/unpacking files for .msu or .cab update packages.
    • Reserved storage that Windows keeps for future updates (so updates don't fail if you're low on space).

    These don't usually show up in the “Choose which temporary files to remove” list because Windows treats them as system-managed.

    To delete them:

    1. Disk Cleanup (system mode)
      • Press Windows + S, type Disk Cleanup.
      • Right-click Disk Cleanup → Run as administrator.
      • Select your system drive (usually C:).
      • In the list, check Windows Update Cleanup (this is the part that hides in “Updates > Temporary Files”).
      • Click OK → Delete Files.
    2. Storage Sense (more automatic)
      • Go to Settings → System → Storage.
      • Click Temporary files.
      • If Windows Update Cleanup shows there, check it and click Remove files.
    3. Manual command method (safe)
      • Open Command Prompt as admin.
      • Run:
             net stop wuauserv
             net stop bits
             del /s /q %windir%\SoftwareDistribution\Download\*
             net start wuauserv
             net start bits
        
        This deletes the cached update downloads (safe — Windows will redownload if needed).

    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.