スクリプト例
カレントフォルダ以下の全てのファイルをリードオンリーに設定するスクリプトです。
get-childitem -Recurse | %{Set-ItemProperty $_.fullname -Name Attributes -Value "Readonly"}
ツッコミ歓迎
カレントフォルダ以下の全てのファイルをリードオンリーに設定するスクリプトです。
get-childitem -Recurse | %{Set-ItemProperty $_.fullname -Name Attributes -Value "Readonly"}