Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

9 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿงน Windows Cache Cleaner

Windows Cache Cleaner Icon

A simple, safe, and powerful tool to clean unnecessary cache files on Windows โ€” without touching anything important.


image

๐Ÿ“– Overview

Windows Cache Cleaner is a user-friendly desktop application that helps you reclaim disk space by safely removing temporary files, cache data, and other unnecessary junk that accumulates over time on Windows systems.

Version 2.0 brings a completely redesigned experience with multi-threading, real-time progress tracking, and an intuitive interface that makes cache cleaning effortless.


โœจ Key Features

๐ŸŽฏ Smart & Safe Cleanup

  • 20 Different Cleanup Options โ€” From browser caches to Windows Update remnants to dev tool caches
  • Safe by Design โ€” Only targets non-critical cache folders
  • Detailed Tooltips โ€” Hover over any option to see exactly what it cleans
  • Confirmation Dialogs โ€” Prevents accidental deletions

โšก Powerful Performance

  • Non-Blocking UI โ€” Application stays responsive during cleanup
  • Real-Time Progress โ€” Live progress bar and status updates
  • Analyze Mode โ€” Preview how much space you'll free before cleaning
  • Cancellable Operations โ€” Stop cleanup at any time

๐Ÿ“Š Transparency & Control

  • Live Operation Log โ€” See exactly what's being cleaned in real-time
  • Detailed Reports โ€” Shows files deleted, space freed, and any errors
  • Persistent Settings โ€” Remembers your cleanup preferences
  • Comprehensive Logs โ€” All operations logged to file for review

๐ŸŽจ User Experience

  • Comic Sans MS UI โ€” Friendly, approachable interface
  • Windows Theme Integration โ€” Matches your system accent color
  • Select All / Analyze / Clean โ€” Three-step workflow
  • No Installation Required โ€” Portable standalone executable

๐Ÿš€ What This Tool Cleans

This cleaner targets only safe-to-remove cache folders, including:

Category What Gets Cleaned Typical Space Saved
๐Ÿ—‚๏ธ Temp Files Windows & User temporary files 1-10 GB
๐Ÿ Coding/Dev Tool Caches pip, conda, npm, Yarn caches 500 MB - 10 GB
๐ŸŒ Browser Caches Chrome, Edge, Firefox, Opera, Brave 500 MB - 5 GB
๐Ÿ“ฆ Windows Update Downloaded update files 500 MB - 5 GB
๐ŸŽฎ GPU Shader Cache NVIDIA, AMD shader compilations 100 MB - 2 GB
๐Ÿช Windows Store UWP app caches 200 MB - 3 GB
๐Ÿ“ธ Thumbnails Icon and thumbnail caches 50 MB - 500 MB
๐Ÿ’ฅ Crash Dumps System and app crash files 100 MB - 5 GB
๐Ÿ“ System Logs Windows event and error logs 100 MB - 2 GB
โš™๏ธ WinSxS Component store cleanup (via DISM) 2 GB - 20 GB
...and more! Prefetch, WebCache, RDP cache, etc. Variable

Total Potential Savings: 5 GB to 50+ GB depending on system age and usage


๐Ÿ“‚ What's Included

Windows-Cache-Cleaner/
โ”‚
โ”œโ”€โ”€ ๐Ÿ“„ README.md                          โ† You are here
โ”œโ”€โ”€ ๐Ÿ“„ LICENSE                            โ† RaneKun Open-Use License
โ”œโ”€โ”€ ๐Ÿ“„ CHANGELOG.md                       โ† Version history
โ”‚
โ”œโ”€โ”€ ๐Ÿ–ผ๏ธ windows_cache_cleaner.ico         โ† Application icon
โ”‚
โ”œโ”€โ”€ ๐Ÿ”ง windows_cache_cleaner_IMPROVED.py  โ† Full source code (Python + PyQt6)
โ”‚
โ”œโ”€โ”€ ๐Ÿ› ๏ธ build_exe.bat                      โ† Build script (Windows)
โ”œโ”€โ”€ ๐Ÿ› ๏ธ build_exe.py                       โ† Build script (Python)
โ”œโ”€โ”€ ๐Ÿ“„ BUILD_INSTRUCTIONS.md              โ† How to build the .exe

๐ŸŽฎ How to Use

Option 1: Standalone EXE (Recommended)

  1. Download the latest release from the Releases page
  2. Extract the ZIP file
  3. Right-click Windows Cache Cleaner.exe โ†’ Run as administrator
  4. Select cleanup options (or click "Select All")
  5. Optional: Click "Analyze ๐Ÿ”" to preview space savings
  6. Click "Run Cleanup ๐Ÿš€"
  7. Wait for completion and review the results

Option 2: Run from Source

Requirements:

  • Python 3.10 or higher
  • PyQt6

Steps:

# Install dependencies
pip install PyQt6

# Run the application
python windows_cache_cleaner_IMPROVED.py

๐Ÿ›ก๏ธ Safety & Security

What Makes This Tool Safe?

โœ… No Critical System Files โ€” Only cleans cache folders that Windows recreates automatically
โœ… Admin Rights Required โ€” Ensures you're aware of what the tool is doing
โœ… Detailed Tooltips โ€” Full transparency about what each option does
โœ… Confirmation Dialogs โ€” Asks before making any changes
โœ… Comprehensive Logging โ€” Everything is logged for review
โœ… Open Source โ€” You can inspect the code yourself

Antivirus False Positives

Note: Some antivirus software may flag the .exe as suspicious. This is a false positive common with PyInstaller-built executables.

Why this happens:

  • PyInstaller bundles the Python interpreter into the .exe
  • This packaging method can resemble some malware packers
  • The tool requires admin rights (which is flagged by heuristics)

What you can do:

  • Check the source code yourself (it's fully available)
  • Build the .exe yourself using the included build scripts
  • Add the .exe to your antivirus whitelist
  • Submit it to your antivirus vendor as a false positive

๐Ÿ”ง Building from Source

Want to build the .exe yourself?

Quick Build (Windows):

  1. Put all files in a folder
  2. Double-click build_exe.bat
  3. Wait 2-5 minutes
  4. Find your .exe in the dist folder

Manual Build:

# Install PyInstaller
pip install pyinstaller

# Build the executable
pyinstaller --onefile --windowed --name "Windows Cache Cleaner" --icon=windows_cache_cleaner.ico --add-data "windows_cache_cleaner.ico;." windows_cache_cleaner_IMPROVED.py

See BUILD_INSTRUCTIONS.md for detailed build instructions.


๐Ÿ’ก Tips & Best Practices

  1. Run Regularly โ€” Weekly or monthly cleanups keep your system fresh
  2. Analyze First โ€” Use Analyze mode to see what you'll gain
  3. Close Browsers โ€” Close all browsers before cleaning browser caches
  4. Keep Logs โ€” Review logs if something seems off
  5. Safe Options โ€” Start with safe options, add more aggressive ones later

๐Ÿ› Known Issues

  • Antivirus False Positives โ€” See "Safety & Security" section above
  • Some Files May Be Locked โ€” Files in use won't be deleted (this is normal and safe)
  • DISM Takes Time โ€” WinSxS cleanup can take 5-15 minutes (be patient)

๐Ÿค Contributing

This is a personal project, but feedback and suggestions are welcome!

Ways to contribute:

  • Report bugs via Issues
  • Suggest new cleanup locations (if safe)
  • Share your experience and results
  • Improve documentation
  • Submit bug fixes (pull requests welcome)

๐Ÿ“œ License

This project is released under the RaneKun Open-Use License.

You CAN:

โœ… Use the tool freely for personal use
โœ… Read and study the source code
โœ… Modify the code for personal use
โœ… Share the original or modified versions
โœ… Use it for educational purposes

You CANNOT:

โŒ Sell this software or derivatives
โŒ Use it in commercial projects without permission
โŒ Remove or modify attribution to RaneKun
โŒ Claim it as your own work

You MUST:

โœ”๏ธ Give proper credit to the original creator (RaneKun)
โœ”๏ธ Include the original license in any distributions
โœ”๏ธ Keep modifications open source (if distributed)

TL;DR: Free for personal use. No selling. Keep it credited. ๐Ÿ™‚

Full license text is available in the LICENSE file.


๐Ÿ‘ค Author

Created by RaneKun

  • Icon designed by RaneKun
  • UI/UX designed by RaneKun
  • Code written by RaneKun

This is a hobby project built to help Windows users keep their systems clean and fast.


๐Ÿ™ Credits & Acknowledgments

Built with:

Inspired by:

  • CCleaner (before it got bloated)
  • BleachBit
  • The need for a simple, trustworthy cache cleaner

๐Ÿ’ฌ Support & Feedback


โš ๏ธ Disclaimer

This tool is provided "as is" without warranty of any kind. While it only targets safe cache folders, use at your own risk. Always keep backups of important data.

The author is not responsible for any data loss or system issues that may occur from using this tool.


๐ŸŒŸ Star This Project!

If you find this tool useful, consider giving it a โญ on GitHub!

It helps others discover the project and motivates continued development.


Made with โค๏ธ by RaneKun

Keep your Windows clean, fast, and clutter-free! ๐Ÿงนโœจ

About

A powerful, safe, and user-friendly cache cleaner for Windows 10/11. Free up disk space with real-time progress tracking and detailed transparency.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages