Tuneup.bat
call :log "[8/12] Running DISM health restore..." DISM /online /cleanup-image /restorehealth >nul 2>&1 call :log " DISM completed."
call :log "[11/12] Disabling unnecessary startup items..." reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Run" /v "OneDriveSetup" /t REG_SZ /d "" /f >nul 2>&1 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Run" /v "Skype" /t REG_SZ /d "" /f >nul 2>&1 call :log " Startup tweaks applied." tuneup.bat
:: ============================================ :: PHASE 5: PRIVACY & JUNK FILES :: ============================================ call :log "Phase 5: Privacy Cleanup" call :log "-------------------------" call :log "[8/12] Running DISM health restore
call :log "[9/12] Running SFC scan..." sfc /scannow >nul 2>&1 call :log " SFC scan completed." echo Log saved to: %LOGFILE% echo
:: ============================================ :: FINAL REPORT :: ============================================ cls echo =============================================================== echo Tune-up Complete! echo =============================================================== echo. echo All operations finished at %date% %time% echo. echo Log saved to: %LOGFILE% echo. echo Summary of actions: echo - Temp files and recycle bin emptied echo - Browser caches cleared echo - DISM and SFC health checks performed echo - Disk error check scheduled echo - Startup items reduced echo - Virtual memory optimized echo - Privacy data cleaned echo. echo It's recommended to restart your PC now. echo. echo =============================================================== echo. choice /C YN /M "Restart now?" if %errorlevel%==1 shutdown /r /t 30 /c "PC will restart in 30 seconds due to system tune-up." exit /b 0 Save this as tuneup.bat and for best results. It logs everything to a dated file on your Desktop.
:: ============================================ :: PHASE 1: DISK CLEANUP :: ============================================ call :log "Phase 1: Disk Cleanup Operations" call :log "----------------------------------"