How to delete Temp Files in Windows 10 [Automatically &
Manually]
Method #1 [Using Disk Clean-up tool][Manually]
Delete Temporary Files in Windows 10 using the Disk Cleanup tool:
- Go to C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
- [OR]
- Just search Disk Clean-up in Windows Search
- Launch Disk Clean-up tool
Method #2[Auto and Manual]
Delete Temporary Files in Windows 10 using Storage Sense:
- Go to Settings>System>Storage>Enable Storage Sense> and Config [Auto method]
- Come back to storage and again go to temporary files and clean [manually method]
Method #3
Delete Temporary Files in Windows 10 using Command Prompt:
Go to C:\WINDOWS\system32 and find cmd (or) Search cmd in the search menu and
open cmd as Run as Administrator and type
del /f /s /q %temp%
Method #4
Delete Temporary Files in Windows 10 Using %temp%
- Go to the Search menu and type %temp% and delete all
- [OR]
- C:\Users\username\AppData\Local\Temp
Method#5
Delete Temporary Files in Windows 10 using Windows Command Script
or Windows Batch File [Use as single click clean]:
Windows Command Script:
- Open a notepad and type
del /f /s /q %temp%
- and save as .cmd
- Keep the .cmd file on the desktop and use it as a single click cleaning method.
Windows Batch File:
- Open a notepad and type
rd %temp% /s /q
md %temp%
- and save as .bat
- Keep .bat file in desktop and use as a single click cleaning method.
Even we can use them for auto cleaning of temp files in Startup or logon
methods.