Marty said:
I have an icon on my desktop that I cannot get rid of, when I try I get the
error message "Cannot delete file: cannot read from the source file or
disk"
Properties show it to be in location C:\Documents and settings\user
name\desktop any help is more appreciated
TIA
One suggestion here, was to delete it from the command prompt.
http://forums.techguy.org/windows-xp/1019973-solved-cannot-delete-file-cannot.html
Using "dir /x" command, that gives the short name for the file.
Then using something like "del shortnam.ext" to delete it,
substituting the short name of the file for the obvious part
of the last command.
To give an example, if I list the contents of my desktop right now,
using "dir /x" it returns
01/15/2009 08:35 699 GIMP2~1.LNK GIMP 2.LNK
The first name is the "short one", the one with the tilde "~" in it.
The second name is the long one, and the long one could have
an illegal character in it. My example is a poor one, because the
second name really isn't very long. But you may run into that
anyway, and be confused by it. The first name appears to be
the short one, at least to me.
del GIMP2~1.LNK
Other possibilities you can find in a Google search,
involve the file being "busy". That could happen, if
the file on your desktop is an actual .exe and is currently
running perhaps. Maybe that would be enough to make it busy
and then resist deleting. You can use a tool like "Unlocker"
to try and get rid of it, or one of the softwares
that "moves on reboot" a file. Or even try removing it
in Safe Mode, in case then, the file is no longer
running and busy.
Checking mine, all the things on the desktop are "links", so
I'm in pretty good shape. No raw .EXE files in there.
Paul