read only attributes

  • Thread starter Thread starter TranZ
  • Start date Start date
T

TranZ

This removes the read only attributes to all
files *within* a folder.

REGEDIT4

[HKEY_CLASSES_ROOT\Directory\shell\readonly]
@="Clear Read Only flag"
[HKEY_CLASSES_ROOT\Directory\shell\read-only\command]
@="attrib -R \"%1\\*.*\" /s"
----------------------------------------
Anyone know to modify it or create a new
entry which will remove the read only attribute
*to the folder* and all files within a folder.

Any help or advice appreciated.
TranZ
 
Why bother with a registry hack if you can do it from
a Command Prompt?

attrib -r c:\test
attrib -r /s /d c:\test\*.*
 
Back
Top