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: $ 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" ...