Reset File Attributes - Set or Reset Read Only file attribute.
How about this one line command for MS-DOS?for /f %a IN ('dir /b *.txt') do attrib %a -RSee: attrib command[^]andhow to write a dos batch file to loop through files[^]
How about this one line command for MS-DOS?
for /f %a IN ('dir /b *.txt') do attrib %a -R
See: