Remove Read-Only of Folder in Win2k3
- 1 Comments... What do you have to say?
I just fixed this at work because somehow a co-worker changed a folder to Read-Only (apparently by accident) and no one could modify anything…not even the architect of this fiasco. The issue is when you uncheck the Read-Only attribute, click Apply, and OK. The Read-Only attrib doesn’t stay unchecked. So you need to use the Attrib command using the command prompt:
use attrib -r +s path_of_folder (example: attrib -r +s c:\test)
you might need to use attrib -r -s c:\test if a program is not working correctly that needs access to that folder.
- Posted in: TECH TIPS!
- Subscribe to RSS
I committed this egregious error myself, and the same thing that happened to you all happened to me. And since I had no idea what was wrong initially, it was three hours later before I realized what was wrong and found the command that you have posted here to fix it.
I don’t wish this error on anyone. It’s one of those simple things that you just don’t mentally go to as the problem first.