just made an automatic installer with iexpress (the packager of windows, under %systemroot%\system32) of Crapcleaner and the batch file which makes ccleaner to clean your system automatically:
http://users.skynet....Batch_v1.0e.rar
the
content of the package:
final.bat =
will run after the installation, copies the batch file to desktop and the msgbox which displays the dialogue messages to the %systemroot%
@echo off
xcopy /y msgbox.exe %systemroot%
xcopy /y ccleaner.bat "%userprofile%\Desktop"
cls
Ccleaner.bat =
has to be started manually by double click to run the ccleaner system clean
@echo off
title Ccleaner Batch 1.0
echo Ccleaner Batch 1.0 start deleting the crap on your system...
IF EXIST c:\*.sqm attrib -h c:\*.sqm
IF EXIST c:\*.sqm del c:\*.sqm
cd program files
cd CCleaner
ccleaner.exe /AUTO
cls
echo Explorer will reboot to clean the run box...
taskkill /f /im explorer.exe
start explorer.exe
cd %systemroot%
cls
msgbox Explorer has restarted, and the crap has been removed!
exit
msgbox.exe=
is the file which shows dialogue messages, downloaded from the net
ccsetup131.exe=
is the installation file of the most recent version of ccleaner which will be started automatically