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:
- 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.
- Press Windows + S, type
- Storage Sense (more automatic)
- Go to Settings → System → Storage.
- Click Temporary files.
- If Windows Update Cleanup shows there, check it and click Remove files.
- Manual command method (safe)
- Open Command Prompt as admin.
- Run:
This deletes the cached update downloads (safe — Windows will redownload if needed).net stop wuauserv net stop bits del /s /q %windir%\SoftwareDistribution\Download\* net start wuauserv net start bits
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