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.