How can I remove the ReadOnly attribute on a file, using a PowerShell (version 1.0) script?
Thanks, MagicAndi
|
How can I remove the ReadOnly attribute on a file, using a PowerShell (version 1.0) script? Thanks, MagicAndi |
||||
|
|
|
You can use
or shorter:
|
|||||||||
|
|
If you happen to be using the PowerShell Community Extensions:
You can do the opposite like so:
|
|||
|
|
The above code snippet is taken from this article UPDATE Using Keith Hill's implementation from the comments (I have tested this, and it does work), this becomes:
|
|||||
|
|
Even though it's not Native PowerShell, one can still use the simple Attrib command for this:
|
|||
|