Filed under: Utilities, Windows, Freeware
Cleano cleans your temp files every time you login
Cleano is a free Windows utility that helps you keep your hard drive clean by deleting your temp files, run history, Internet explorer files, and other data. What sets Cleano apart from other utilities like CCleaner is its simple layout and a nifty little feature that lets you automatically cleanup files when you login to Windows.Cleano also happens to be a single tiny executable file, which makes this utility a perfect candidate for installation on a USB flash drive which you can use to do some basic cleaning operatings on your work and home computers, as well as the next time you visit your friends or family members who are always complaining that they're running out of space on their hard disk.
[via Life Rocks 2.0]
So, just how good at time waster games are you? Think you've got the stuff? Well, The World's Hardest Game 2.0 doesn't think you do.
Yes, amazingly, it's possible to have a sequel to a game called "The World's Hardest Game". It doesn't seem logically possible, since if the first one was actually the world's hardest, how could another one come along and share the moniker? It made me doubt the name in the first place. That is, until I tried the game.
The mechanics of the game are very simple. You are a small red square, ...

Reader Comments (Page 1 of 1)
AFD said 9:19PM on 12-08-2008
Not bad, but I'm still looking for a good replacement for IE Privacy Keeper that will run on Vista. CCleaner is close, but I'd like something that works at log-off, instead of at log-on.
Reply
Rodrigo P. Ghedin said 6:40PM on 12-08-2008
Does it make the login process slower?
[]'s!
Reply
Fred Thompson said 3:15AM on 12-09-2008
I also use IE Privacy Keeper. Unfortunately, it doesn't support current Firefox or Chrome so something more recent is still on my hunt list, too.
Reply
sybgtwy said 8:11AM on 12-09-2008
You know what else works, and is free? Batch files called as scheduled tasks on startup.
This one renames your existing temp, in case you're a packrat and need to save some files that shouldn't be there, but are. Because you renamed it, you can delete it when done (no pointers during your new session).
@echo off
FOR /F "TOKENS=2-4 DELIMS=- " %%F IN ('DATE /T') DO (
SET YYYY=%%F
SET MM=%%G
SET DD=%%H
)
REM debug statements
REM echo %YYYY%
REM echo %MM%%
REM echo %DD%
FOR /F "TOKENS=1-2 DELIMS=: " %%F IN ('TIME /t') DO (
SET HR=%%F
SET MN=%%G
)
set fullstamp=%YYYY%_%MM%_%DD%_%HR%%MN%
REM debug statement
REM echo %fullstamp%
set newtemp=temp_%fullstamp%
REM this is the volume for tempfiles, pagefiles
f:
cd\
rename temp %newtemp%
mkdir temp
You can easily rewrite it to this:
@echo off
f:
cd\
rmdir /s /q temp
mkdir temp
The solution extends to any subdirs you can find. Graphical, no. Fast, yes.
Reply