How to clean the cache on the Xiaomi Redmi Note laptop: all ways

Xiaomi Redmi Note laptops (including RedmiBook 14/15/16 Pro models) become slower over time due to accumulated cache β€” temporary files that create the system and applications. Clearing the cache helps free up disk space, speed up program loads and even solve some errors.

In this article, you will find 5 proven ways to clean up the cache on Redmi Note β€” from standard Windows tools to manually cleaning hidden folders. We will also analyze which files can be deleted without risk and which cannot be touched categorically (for example, driver cache or system updates). If your laptop is slowing down, start with the first partition β€” perhaps the problem will be solved in 5 minutes!

1. Clear cache through built-in Windows tools

The safest way is to use standard Windows 10/11 utilities, which automatically detect unnecessary temporary files, which is suitable for novice users, since it does not require working with system folders.

To start the cleanup:

  • πŸ“ Open the Start. β†’ Parameters β†’ System system β†’ Memory of the device.
  • πŸ” In the "Local Disk (C:)" section, click Temporary Files.
  • βœ… Check boxes for β€œTemporary Files”, β€œWindows Update Cache” and β€œBasket".
  • πŸ—‘οΈ Click Delete Files and Confirm Action.

This method removes up to 5-15 GB of unnecessary data, including Microsoft Store cache, old log files and update residues, but it does not affect the cache of browsers and third-party programs – they need separate steps (see section 3).

πŸ“Š How often do you clear the cache on your laptop?
Once a month
Once in 3 months
Only when it's slowing down.
Never cleaned.

⚠️ Note: Do not delete the "Downloaded Files" item in this menu, as it may store important documents downloaded from the Internet. Also avoid cleaning the Delivery Optimization Files if you use Windows Update Delivery Optimization.

2. Manual deletion of system application cache

Many of Xiaomi’s built-in utilities (such as Mi Bluetooth, Mi Share or Xiaomi Cloud) create their own cache that is not cleared through standard Windows tools.These files can take up to 1-3 GB and be stored in hidden folders.

To remove them:

  1. Press Win + R, enter %LocalAppData% and press Enter.
  2. Go to the Xiaomi folder (or MiInc for some models).
  3. Delete the contents of Cache, Temp and Logs folders.
  4. Repeat the steps for the %AppData% path (there are app settings stored).

For RedmiBook Pro models with Xiaomi Quick Apps preinstalled, check the folder:

C:\Users\<Your username>\AppData\Local\Packages\XiaomiCorporation.*

Cache folder (app cache)

Temp folder (temporary files)

Logs folder (error logs)

Files with.tmp extension

-->

⚠️ Note: Do not delete files with extensions.dll,.exe or Drivers - this can cause Mi Bluetooth or Mi WiFi to fail. If in doubt, transfer files to a separate folder on the desktop and check the stability of the system.

3. Clearing the browser cache (Chrome, Edge, Firefox)

Browsers are the main cache drives, for example, Google Chrome can take up to 500 MB-2 GB only for temporary site files. SSD-This is critical because it reduces the life of the disk.

Instructions for popular browsers:

browserThe way to the cacheHow to clean up
Google Chrome%LocalAppData%\Google\Chrome\User Data\Default\CacheClick Ctrl + Shift + Del β†’ select β€œImages and files saved in cache” β†’ Clear data.
Microsoft Edge%LocalAppData%\Microsoft\Edge\User Data\Default\CacheGo to edge://settings/clearBrowserData β†’ tick β€œCached images and files”.
Mozilla Firefox%AppData%\Mozilla\Firefox\Profiles\Open about:preferences#privacy β†’ β€œCookies and Site Data” β†’ Clear the data.

External utilities like CCleaner or BleachBit can be used for deep cleaning, but they often delete too much data, which can lead to re-authorization on sites.

πŸ’‘

If the sites load longer after cleaning the cache, it is normal for the browser to take time to re-upload static elements (pictures, styles), after 1-2 days the speed will return to normal.

4.Using Disk Cleanup for Deep Cleaning

Disk Cleanup (cleanmgr.exe) allows you to remove the system cache that is not visible through standard settings.

  • πŸ—ƒοΈ Windows Update Cache (Software Distribution folder).
  • πŸ–ΌοΈ Image sketches (Thumbcache folder).
  • πŸ“₯ Memory dump files (in case of system failures).

How to start:

  1. Press Win + R, enter cleanmgr and select the C: drive.
  2. Click Clear System Files (Administrator Rights Requires).
  3. Please mark all items except "Downloaded Program Files".
  4. Confirm removal.

For RedmiBook models with two drives (SSD + HDD), repeat the procedure for both drives. The utility can release up to 10-20 GB if you have not cleaned it for a long time.

What if Disk Cleanup doesn’t start?
If an error occurs when you start cleanmgr, try 1. Run the command line on behalf of the administrator and type: sfc /scannow 2. Re-register the library: regsvr32 %systemroot%\system32\cleanmgr.dll 3. Install Windows updates through Settings β†’ Update and Security.

5.Cache clearing through Command Prompt (for experienced)

If standard methods don't work, you can use the command prompt for deep cleaning, which is suitable for removing the Windows Update cache, DNS, and temporary files of all users.

Major teams:

#Cleaning up the DNS cache


ipconfig /flushdns




Delete temporary files of all users



for %i in (%windir%\serviceprofiles\localservice\appdata\local\temp\*) do del "%i" /f /s /q




for %i in (%windir%\serviceprofiles\networkservice\appdata\local\temp\*) do del "%i" /f /s /q




Cleaning up the Windows update cache



net stop wuauserv




del "%windir%\SoftwareDistribution\*" /f /s /q




net start wuauserv

For RedmiBook models with MIUI+ (if installed), additionally do:

#Cleaning up MIUI+ cache


del "%LocalAppData%\MiUI+\Cache\*" /f /s /q

⚠️ Attention: Teams with parameter /f /s /q Delete files without requesting confirmation. Close all programs before executing and save important data. If Windows Update malfunctions after cleaning, manually run the service: net start bits net start cryptsvc net start msiserver.

6. Automatically clean the cache with the task scheduler

To avoid manually clearing the cache, you can set up automatic execution through Windows Task Planner. This is true for Redmi Notes that are used in the office or for school, and regular cleaning will prevent slowdown.

How to set up:

  1. Open Start β†’ Service β†’ Task Planner.
  2. Click Create a Task and specify a name (e.g., Cache Clearing).
  3. In the "Triggers" tab, add a schedule (e.g. Mondays weekly at 3:00).
  4. In the Actions tab, select Start the Program and specify the path: C:\Windows\System32\cleanmgr.exe Arguments: /sagerun:1 (where 1 is the cleanup setting identifier).
  5. Please mark the box "Perform with the highest rights".

For Windows 11 models, you can use a PowerShell script to make it more flexible. Example of a weekly cleanup script:

$days = 7


$targetFolder = "$env:LocalAppData\Temp"




$now = Get-Date




$lastWrite = $now.AddDays(-$days)




Get-ChildItem $targetFolder -Recurse | Where-Object { $_.LastWriteTime -lt $lastWrite } | Remove-Item -Force -Recurse

πŸ’‘

Automatic cache cleaning reduces the risk of system littering, but may conflict with background updates.Set a schedule for times when the laptop is not in use (e.g., at night).

FAQ: Frequent questions about cleaning the cache on Xiaomi Redmi Note

Can I clean the cache every day?
No, it's not practical. Frequently cleaning browser cache will cause sites to load longer each time they visit: πŸ“… Browsers: once every 1-2 weeks. πŸ“… System cache: once a month. πŸ“… App cache: if errors or slowdowns occur, except if you are working with sensitive data (e.g., banking systems), then clear the cache after each session.
Why did the laptop work slower after cleaning the cache?
This is a temporary phenomenon. When you first boot up after cleaning, the system and the applications recreate the cache files, which requires additional resources: πŸ–₯️ System operations: 10–30 minutes. 🌐 Browsers: 1-2 days (depending on the number of sites visited). If the slowdown persists longer, check your laptop for viruses or conflicting programs through Task Manager.
What programs can you use to clean the cache instead of manual methods?
For Xiaomi Redmi Note suitable the following utilities (tested for compatibility with preinstalled software): Pros Minus CCleaner Convenient interface, cleans registry Aggressive deletion, can break the settings Mi Account BleachBit More "soft" cleaning, supports Linux No Russian language, difficult to configure Dism++ Deep cleaning system components For experienced users, risk to damage the system We recommend not to use "cleaners" to clean the cache Xiaomi applications - they often delete authorization files, which leads to the exit of the account Mi.
How to clear the cache on Redmi Note if the laptop is not turned on?
If the laptop doesn't boot due to a crowded cache (for example, after an update crash), try: Boot in Safe Mode (hold Shift when turned on: πŸ”§ Select System Restore β†’ Command line. πŸ“ Enter del: C:\Windows\Temp\* /q /f /s del C:\Users\AppData\Local\Temp\ /q /f /s If the laptop makes a mistake INACCESSIBLE_BOOT_DEVICE, The problem is not the cache, but the drivers or the drive, and you need to reinstall Windows.
Can I clear the Redmi Note cache through the BIOS?
No, BIOS does not provide tools to clean the cache of the operating system. BIOS possible: πŸ”„ Reset settings on default (will not help with cache). πŸ”‹ Check boot priority (relevant for reinstalling Windows). πŸ’Ύ Update firmware BIOS (if the problem is in the processor hardware cache. To clean the cache, you must download to Windows or use LiveCD/LiveUSB with utilities like Hiren's BootCD.