Hi Edicus,
Some thoughts:
If you need any steps to complete the above, then I'd be happy to post those up as well.
- What are the steps leading up to the error message? e.g. are you navigating to the folder and can see it in explorer and then trying to delete, are you using a third party deletion program etc?
- If you can see the folder, then please run a checkdisk on your drive to remove any drive corruption.
- Also please check that you have permissions to delete it.
Try navigating to it with the command prompt running as administrator and delete it. If that won't work, boot from another source and locate it. I use Ubuntu for that. The version I use has all sorts of useful utilities too.
takeown /F Windows.old.000 /R /A
attrib -r -s -h Windows.old.000\*.* /s /d
rd Windows.old.000 /s /q
Open an elevated command prompt and type the following in order; I am going to assume the directory name is Windows.old.000 from the above postings. Please change the name as needed.
Note: This will delete the folder and there is NO quick recovery if you type the wrong directory name in, so please be extremely careful. Create a restore point if you want to have a backup.
Code:takeown /F Windows.old.000 /R /A attrib -r -s -h Windows.old.000\*.* /s /d rd Windows.old.000 /s /q
Open an elevated command prompt and type the following in order; I am going to assume the directory name is Windows.old.000 from the above postings. Please change the name as needed.
Note: This will delete the folder and there is NO quick recovery if you type the wrong directory name in, so please be extremely careful. Create a restore point if you want to have a backup.
Code:takeown /F Windows.old.000 /R /A attrib -r -s -h Windows.old.000\*.* /s /d rd Windows.old.000 /s /q
Worked! Thanks so much. Command prompts make me miss the days of DOS!