Have you tried using a Linux live cd? Ubuntu can be used to copy files/folders , so may be able to delete these ones as well.
I haven't done it myself , and it's a long shot - but you may be ready to try just about anything.
SIW2
I thought the Ubuntu live CD can't mount partitions? (I remember trying to do this once).
For MoveOnBoot did you try dragging and dropping the file?
If that doesn't work either, get the
Slax live CD (only 190MB) and burn it as an image and boot into it. Once the desktop environments loaded, go to System and then Storage Media and select your hard drive and locate the file. From there just delete.
If that also doesn't work, type "Alt+F2" and in the run command box type "konsole" and hit enter (If you already have a live CD with GNOME as the DE, type "gnome-terminal" instead). CD (change directory) to the directory of the file. I can't remember if Slax mounts at /mnt or /media, so if you're not sure, in Konsole, type:
Code:
$ cd /mnt
$ ls
$ cd /media
$ ls
('$' is the prompt, don't type that)
and whichever directory contains the name of your hard drive or partition is the one where it's mounted. Once you do that, go to wherever the file is. So if the file was on vista and on the desktop, you would type:
Code:
$ cd Users/'You User Name'/Desktop
2 things to remember about the terminal, it's case sensitive; "Users" is not the same as "users". And if the file or directory contains a space in it, surround it in quotes - example:
Once you get to where the file is, type 'ls' and hit enter to see a list of all the files in the working directory. Let's say the file you want to delete is named 'eBook - Programming in C', type the following to delete it:
Code:
$ ls
eBook - Programming in C
$ rm -f "eBook - Programming in C"
If the file's in a folder that you don't need, or you want to delete all the files inside and including the folder, type:
Oh and you can press 'Tab' anytime while typing the name to autocomplete it. This will also add quotes automatically if required.