I will try the first suggestion, but i would like some info on what to do with the command line just in case.
Cheers
if you boot up your computer with your windows xp cd, and that's assuming you have one... If all you have is a restore disk, then this won't work...
Anyway, boot up with windows xp disk and choose the recovery console, that will get you to a command line. Once you get there, you will use the attrib command. your command will look something like this
attrib c:\windows\system32\error32.dat
it will then tell you what attributes it has. It will probably show an R, but could also show an A S or H. Whatever letters it shows is what you will take off. For example if you do the attrib command and it says R to the left of the filename... you will have to get rid of the R. To do that, the command would be
attrib -R c:\windows\system32\error32.dat
If there was an H also, you would do this
attrib -R -H c:\windows\system32\error32.dat
you get the idea. Once you change the attributes than you should be able to delete it from the command line by typing
del c:\windows\system32\error32.dat