Make read-only file read write from commandline windows

6

1

How can I make a read-only Windows file read+write for Everyone from the command line. I searched CACLS but the examples aren't great.

patrickinmpls

Posted 2012-03-01T17:40:31.583

Reputation: 1 193

Answers

9

The attrib command:

here is an example

attrib -r file.txt

This would remove the read-only attribute from the file called file.txt

Keltari

Posted 2012-03-01T17:40:31.583

Reputation: 57 019