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).
β οΈ 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:
- Press Win + R, enter %LocalAppData% and press Enter.
- Go to the Xiaomi folder (or MiInc for some models).
- Delete the contents of Cache, Temp and Logs folders.
- 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:
| browser | The way to the cache | How to clean up |
|---|---|---|
| Google Chrome | %LocalAppData%\Google\Chrome\User Data\Default\Cache | Click Ctrl + Shift + Del β select βImages and files saved in cacheβ β Clear data. |
| Microsoft Edge | %LocalAppData%\Microsoft\Edge\User Data\Default\Cache | Go 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:
- Press Win + R, enter cleanmgr and select the C: drive.
- Click Clear System Files (Administrator Rights Requires).
- Please mark all items except "Downloaded Program Files".
- 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?
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 wuauservFor 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:
- Open Start β Service β Task Planner.
- Click Create a Task and specify a name (e.g., Cache Clearing).
- In the "Triggers" tab, add a schedule (e.g. Mondays weekly at 3:00).
- 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).
- 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).