Uncheck read only file for all sub folder with PowerShell
This time I'll introduce PowerShell code that disables the read only for all the files in sub folders (Recurse)
The code:
Code should help you, especially you're working with the team system - which locks the files to ReadOnly
Yours,
Roi
The code:
$Path = "your root folder"
$Files = Get-ChildItem $Path -Recurse
ForEach ($File in $Files)
{
Write-Host "File: " $File "IsReadOnly: " $File.IsReadOnly
if ($File.Attributes -ne "Directory" -and $File.Attributes -ne "Directory, Archive")
{
if ($File.IsReadOnly -eq $true )
{
try
{
Set-ItemProperty -path $File.FullName -name IsReadOnly -value $false
write-host "file:" $File.FullName "is now false read only" -foregroundcolor "magenta"
}
catch [Exception]
{
Write-Host "Error at file " $Path "\" $File
Write-Host $_.Exception.Message
}
}
}
}
$Files = Get-ChildItem $Path -Recurse
ForEach ($File in $Files)
{
Write-Host "File: " $File "IsReadOnly: " $File.IsReadOnly
if ($File.Attributes -ne "Directory" -and $File.Attributes -ne "Directory, Archive")
{
if ($File.IsReadOnly -eq $true )
{
try
{
Set-ItemProperty -path $File.FullName -name IsReadOnly -value $false
write-host "file:" $File.FullName "is now false read only" -foregroundcolor "magenta"
}
catch [Exception]
{
Write-Host "Error at file " $Path "\" $File
Write-Host $_.Exception.Message
}
}
}
}
Code should help you, especially you're working with the team system - which locks the files to ReadOnly
Yours,
Roi
It thorws runtime error. I have modified it. Find it below
ReplyDelete$Path = "your root folder"
$Files = Get-ChildItem $Path -Recurse
ForEach ($File in $Files)
{
Write-Host file:$File IsReadOnly: $File.IsReadOnly
if ($File.Attributes -ne "Directory" -and $File.Attributes -ne "Directory, Archive")
{
try
{
Set-ItemProperty -Path $Path"\"$File -name IsReadOnly -value $false
}
catch
{
Write-Host "Error at file " $Path "\" $File
}
}
}
Thanks I fix it
ReplyDeleteNone of the above script works. 1st Script always throw terminator missing error. The script given by Anonymous throws file not found error when the folder has sub folders and files. Because the path generated will be always "Rootfolder\FileName". The Subfolder name is not specified which causes the error.
ReplyDeleteI fixed the readonly script
ReplyDeleteStill the code has issue.
ReplyDeleteCouple of errors.
1. The Closing Double quotes missing in Line 5.
2. "\" Should be replaced "\""
3. finally {} block is missing (Powershell reports error)
Simple 1 line MS Dos Command will do this.
ReplyDeleteRemove Read only : attrib -r "c:\folderpath\*.*" /s
Remove Hide only : attrib -h "c:\folderpath\*.*" /s
Remove Read Only / Hide : attrib -h -s "c:\folderpath\*.*" /s
Thanks... I fixed the code and showed it on the image
ReplyDelete