@echo off
echo Starting disk cleanup...
del /s /f /q C:\WINDOWS\Temp\*.*
del /s /f /q C:\WINDOWS\Prefetch\*.*
del /s /f /q C:\WINDOWS\ServicePackFiles\i386\*.*
del /s /f /q C:\WINDOWS\Installer\*.*
del /s /f /q C:\WINDOWS\system32\LogFiles\*.*
del /s /f /q C:\WINDOWS\system32\config\*.log
echo Disk cleanup completed successfully.