Clearing Windows Updates Cache: A Comprehensive Tutorial for WINDOWS 11 & 10 Users

Clearing Windows Updates Cache: A Comprehensive Tutorial for WINDOWS 11 & 10 Users

Mark Lv12

Clearing Windows Updates Cache: A Comprehensive Tutorial for WINDOWS 11 & 10 Users

Key Takeaways

  • To delete the update cache, open Run, type services.msc, right-click “Windows Update,” and choose “Stop.” Keep the window open.
  • Open Run again, type C:\Windows\SoftwareDistribution\, select all files, right-click a file, and choose the trash can icon (Windows 11) or “Delete” (Windows 10).
  • Come back to the “Services” window, right-click “Windows Update,” and choose “Start.”

Both Windows 11 and Windows 10 make it super easy to clear your Windows Update cache. You can use a graphical method or a command line option to delete the saved update files. We’ll show you your available options.

Why Should You Clear Your Windows Update Cache?

There are many reasons you might want to clear your Windows Update cache.

You might be facing issues finding or installing updates , and clearing the cache often fixes the problem. Clearing the cache fixes issues with Windows Updates by forcing Windows to re-download all the required files.

Another reason is to free up storage space . Update cache files often use a huge chunk of the storage, and you can reclaim that by deleting those cached files. (Windows does delete some update files after installing those updates, but not all.)

Clear Windows Update Cache Using File Explorer

An easy graphical way to delete the update cache is to use File Explorer. This method deletes all the update cache files.

To use this method, open the Run dialog box by pressing Windows+R. Type the following in the box and press Enter:

services.msc

In the Services window, find the Windows Update service. Right-click it and select “Stop.” Keep this window open as you’ll come back here later.

'Stop' highlighted for 'Windows Update' on the 'Services' window.

Launch Run again using Windows+R, type the path below in the box, and press Enter. The following is the path to the Windows Update cache folder. It assumes that Windows is installed on your C:\ drive. However, if that’s not the case, just change the drive letter in the path.

C:\Windows\SoftwareDistribution\

Press Ctrl+A to select all files in the open folder . Right-click a selected file and choose the trash can icon (Windows 11) or “Delete” (Windows 10).

The trash can icon highlighted for the Windows Update cache files.

PCDJ Karaoki is the complete professional karaoke software designed for KJs and karaoke venues. Karaoki includes an advanced automatic singer rotation list with singer history, key control, news ticker, next singers screen, a song book exporter and printer, a jukebox background music player and many other features designed so you can host karaoke shows faster and easier!
PCDJ Karaoki (WINDOWS ONLY Professional Karaoke Software - 3 Activations)

Close File Explorer and empty the Recycle Bin .

Then, return to the “Services” window, right-click “Windows Update,” and choose “Start.”

'Start' highlighted for 'Windows Update' on the 'Services' window.

This ensures your PC can continue to look for the latest updates.

Clear Windows Update Cache Using Disk Cleanup

Windows’s built-in Disk Cleanup utility helps delete some Windows Update cache files.

To use it, open the Start Menu, search for Disk Cleanup, and launch the utility.

Disk Cleanup highlighted in Windows Search.

Select your Windows installation drive and choose “OK.”

The Windows installation drive and 'OK' highlighted in Disk Cleanup prompt.

Select “Clean Up System Files.”

'Clean Up System Files' highlighted in Disk Cleanup.

Choose your Windows installation drive again and select “OK.”

In Disk Cleanup, enable the “Windows Update Cleanup” option. Feel free to enable other options if you’d like to delete those files as well. Then, at the bottom, click “OK.”

'Windows Update Cleanup' and 'OK' highlighted in Disk Cleanup.


VSDC Pro Video Editor is a light professional non-linear video editing suite for creating a movie of any complexity. It supports the most popular video/audio formats and codecs, including 4K, HD and GoPro videos. Preconfigured profiles make the creation of videos for various multimedia and mobile devices absolutely hassle-free.

Key features:

• Import from any devices and cams, including GoPro and drones. All formats supported. Сurrently the only free video editor that allows users to export in a new H265/HEVC codec, something essential for those working with 4K and HD.
• Everything for hassle-free basic editing: cut, crop and merge files, add titles and favorite music
• Visual effects, advanced color correction and trendy Instagram-like filters
• All multimedia processing done from one app: video editing capabilities reinforced by a video converter, a screen capture, a video capture, a disc burner and a YouTube uploader
• Non-linear editing: edit several files with simultaneously
• Easy export to social networks: special profiles for YouTube, Facebook, Vimeo, Twitter and Instagram
• High quality export – no conversion quality loss, double export speed even of HD files due to hardware acceleration
• Stabilization tool will turn shaky or jittery footage into a more stable video automatically.
• Essential toolset for professional video editing: blending modes, Mask tool, advanced multiple-color Chroma Key

The tool will begin cleaning up the update cache files.

Clear Windows Update Cache Using Command Prompt

If you prefer command line methods over graphical ones, use a few commands in Command Prompt (or PowerShell) to remove the update cache.

Begin by opening the Start Menu, searching for Command Prompt, and selecting “Run as Administrator.”

'Run as Administrator' highlighted for Command Prompt in Windows Search.

In the “User Account Control” (UAC) prompt, select “Yes.”

Type the following lines in Command Prompt, and press Enter after each line. The first command disables the Windows Update service and the second command turns off the Background Intelligent Transfer Service service.

    `net stop wuauserv  

net stop bits`

Commands to stop certain Windows services typed in Command Prompt.

Next up, run the following command to make the Windows Update cache folder the current working directory.

cd %windir%\SoftwareDistribution

Type the following command and press Enter to delete the update cache.

del /f /s /q .

Commands to clear the Windows Update cache typed in Command Prompt.

After clearing the cache, restart the services you stopped above. Do that by typing the following commands and pressing Enter after each line.

    `net start wuauserv  

net start bits`

You’re done.

Use a Script to Clear Update Cache in a Single-Click

You can make a batch file out of the commands above to clear your Windows Update cache in just a single click. This is a convenient method if you delete your update cache files often.

To make that script, open the Start Menu, search for Notepad, and launch the app. Copy the code below and paste it in your Notepad document.

    `net stop wuauserv  

net stop bits
cd %windir%\SoftwareDistribution
del /f /s /q .
net start wuauserv
net start bits`

Save the file by choosing File > Save from the menu bar.

In the “Save As” window, select the folder where you want to save the script. Click the “Save as Type” drop-down menu and choose “All Files.” Select the “File Name” field and enter a name of your choice. Then, append .bat at the end of the file name. This ensures Notepad saves the file as a batch script.

Then, click “Save.”

Windows' 'Save As' window.

In the future, to clear your Windows Update cache using the script, right-click the script file and select “Run as Administrator.” In the User Account Control prompt, choose “Yes.” The script will stop certain services, deletes the update cache files, and restarts the stopped services.


And that’s how you get rid of the update cache files using various ways on your Windows 11 or Windows 10 computer. We hope you find the methods useful.

  • Title: Clearing Windows Updates Cache: A Comprehensive Tutorial for WINDOWS 11 & 10 Users
  • Author: Mark
  • Created at : 2024-08-28 04:58:49
  • Updated at : 2024-08-29 04:58:49
  • Link: https://win-solutions.techidaily.com/clearing-windows-updates-cache-a-comprehensive-tutorial-for-windows-11-and-10-users/
  • License: This work is licensed under CC BY-NC-SA 4.0.