1. You can configure CC to automatically go from Analyze, through Run Cleaner. Currently, you have to click Analyze, wait for the results and then Run Cleaner.
2. Along with #1, can you create an option that will enable CC to turn off your PC (shutdown), when the cleaning is done. Sometimes it takes a while for CC to Analyze, Clean (especially if you use DOD or higher erasing). It would be great if it just could shut the computer off.
The clicking Clean after Analyze is a security feature so that after you analyze it, you can inspect what to be deleted before you confirm the cleaning.
1. You don't need to analyse. Just click "run cleaner"
2.Options > Advanced. Check "close program after cleaning" But I'm not sure whether it's possible to make it shut down your computer. I don't think so. Others may know better.
A little searching of the forum would have turned up how to have CCleaner clean junk files under the Cleaner button, and then shutdown Windows - Windows XP that is.
-----------
How to have CCleaner auto-clean and then shutdown Windows XP:
Copy the text below in the CODE, paste it into Notepad, and save it onto the desktop as including the quotation marks:
"CCleaner Auto Then Shutdown.bat"
@echo off
echo CCleaner Auto Clean Then Shutdown Windows XP
"%ProgramFiles%\CCleaner\ccleaner.exe" /AUTO
SHUTDOWN -s -t 30 -c "System Shutdown"
echo.
echo.
echo To allow the System Shutdown just wait.
echo.
echo To abort the System Shutdown press any
echo key on your keyboard.
echo.
echo.
pause
SHUTDOWN -a
CLS
EXIT
Edit: Updated the script in the CODE to allow System Shutdown to be aborted.