こんにちは、今日はPowerShellでアイテムのプロパティを設定するコマンドレットSet-ItemPropertyの使い方についてまとめていきます。
確認環境
PSVersion 5.1.18362.1110
Set-ItemPropertyの使い方
引数にアイテムを指定し、-Nameオプションで変更するプロパティを、-Valueオプションでその値を指定します。
この例では緩れとディレクトリにある「test.txt」ファイルを読み取り専用に設定しています。
PS C:\Users\santerabyte> Set-ItemProperty .\test.txt -Name IsReadOnly -Value $true
リンク
Set-ItemProperty (Microsoft.PowerShell.Management) – PowerShell | Microsoft Docs
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-itemproperty?view=powershell-7.1