What about letting ScanDisk run on it?
I was trying to avoid this next technique... it is again
DOS, there is a switch /s for the dir command that
will tell it to parse every subdirectory (or folder as
most people call them), the only problem is that IF
there are a lot of files on the system, it could be a
very long list of files to stare through... I would not
be able to pull this off on my system... Type the
following:
1) This will go through every unhidden file on the C:
drive (I assume the C: drive):
CD \
dir *.* /s /p
The /s switch means all subfolders, the *.* means all
files, the /p switch means view one page at a time.
You could set the properties for the DOS prompt
up to display 100000 lines if needed and avoid using
the /p switch, as the /p switch makes things very long
and tedious to go through using your eyes and patience.
2) The following will display all hidden files:
CD \
dir /s /ah
That should be pretty easy to work and view and you
might not need the /p switch there, so I left it out.
Again you can set the properties for the DOS window
to display 100000 lines if you so desire. I usually have
my DOS prompt set to display 5000 lines.
If you know where your Temporary Internet Files are
stored you can navigate to that folder using DOS. Or
you can type in the following:
CD "%UserProfile%\Local Settings\Temporary Internet Files"
dir/ah
You will see four funky named folders, and you can try the
following:
DEL <foldername>
where <foldername> is the name of the folder as displayed
in the list. Do that for each folder. Who knows? Maybe it's
another "feature" that deleting Internet Files in the MS
approved manner...
That'll give you something to do. I'll suggest messing
with the dir command and the /p /s switches. They're
pretty intuitive. You can use CTRL+C on the keyboard
to break out of a dir listing at any time.