Feature Request: Clean All User Profiles

When I sit down at a new computer to clean it out, it often has multiple profiles for multiple users. I really need to be able to select which USERPROFILE directories under "C:\Documents and Settings" I can clean out.

I can clean "%userprofile%\Temp" and "%userprofile%\Temporary Internet Files" manually, or using a simple batch file like this:

=====================

for /d %%a in ("c:\documents and settings\*") do echo RD /s "%a\Local Settings\Temp"

for /d %%a in ("c:\documents and settings\*") do echo MKDIR "%a\Local Settings\Temp"

for /d %%a in ("c:\documents and settings\*") do echo RD /s "%a\Local Settings\Temporary Internet Files"

for /d %%a in ("c:\documents and settings\*") do echo MKDIR "%a\Local Settings\Temporary Internet Files"

=====================

but this doesn't get all the other ancilliary program-related stuff CCleaner can get. How soon, if at all, can we expect support for multiple profiles?

This might be a feature for CCPro, as I would pay for a tool like this.

This has been requested many times before. I'm guessing it may be an option in CCleaner 2 when its released but that is just a guess.

I can clean "%userprofile%\Temp" and "%userprofile%\Temporary Internet Files" manually, or using a simple batch file like this:

=====================

for /d %%a in ("c:\documents and settings\*") do echo RD /s "%a\Local Settings\Temp"

for /d %%a in ("c:\documents and settings\*") do echo MKDIR "%a\Local Settings\Temp"

for /d %%a in ("c:\documents and settings\*") do echo RD /s "%a\Local Settings\Temporary Internet Files"

for /d %%a in ("c:\documents and settings\*") do echo MKDIR "%a\Local Settings\Temporary Internet Files"

=====================

I could use this batch file. an you post a copy of the whole batch file?

I second that request. It?d be a very useful feature for tidying up before defrag. Hope version 2 gets it soon.