Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I remove the ReadOnly attribute on a file, using a PowerShell (version 1.0) script?

Thanks, MagicAndi

share|improve this question

4 Answers

up vote 33 down vote accepted

You can use Set-ItemProperty:

Set-ItemProperty file.txt -name IsReadOnly -value $false

or shorter:

sp file.txt IsReadOnly $false
share|improve this answer
Set-Property is the only built-in way you can cleanly do it on the pipeline, and using wildcards: { sp *.txt IsReadOnly $false } OR { ls . -recurse -include *.cs | sp -name IsReadOnly -value $false } – Jaykul May 27 '09 at 14:45
Using PowerShell v2 I'm seeing hard-to-use CmdLet bindngs for sp. PSCX Set-Writable and Set-ReadOnly don't have those problems. I'll blog the problems I'm seeing and link to it later. I recommend Keith's answer for PowerShell v2 (modern PowerShell). – yzorg Apr 21 '11 at 22:39
1  
@yzorg: So what exactly are you telling me here? As for Keith's answer, he's using PSCX. Not everyone has those installed and that's not really a case of PowerShell v1 vs. v2. – Јοеу Apr 22 '11 at 9:28

If you happen to be using the PowerShell Community Extensions:

PS> Set-Writable test.txt
PS> dir . -r *.cs | Set-Writable
# Using alias swr
PS> dir . -r *.cs | swr

You can do the opposite like so:

PS> dir . -r *.cs | Set-ReadOnly
# Using alias sro
PS> dir . -r *.cs | sro
share|improve this answer
$file = Get-Item "C:\Temp\Test.txt"

if ($file.attributes -band [system.IO.FileAttributes]::ReadOnly)  
{  
  $file.attributes = $file.attributes -bxor [system.IO.FileAttributes]::ReadOnly    
}

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:

$file = Get-Item "C:\Temp\Test.txt"

if ($file.IsReadOnly -eq $true)  
{  
  $file.IsReadOnly = $false   
}
share|improve this answer
4  
The implementation is simpler than that: $file.IsReadOnly = $false – Keith Hill May 21 '09 at 15:04

Even though it's not Native PowerShell, one can still use the simple Attrib command for this:

attrib -R file.txt
share|improve this answer
Thanks! This worked for me: dir . -r *.cs | % { $_.fullname } | % { attrib -r $_ } – Cameron Taggart Dec 7 '12 at 23:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.