3テラバイト

プログラム関連備忘録サイト。主にゲーム。

PowerShell

PowerShellでアイテムのコンテンツを設定するコマンドレットSet-Contentの使い方

投稿日:

こんにちは、今日はPowerShellでアイテムのコンテンツを設定するコマンドレットSet-Contentの使い方についてまとめていきます。

確認環境

PSVersion 5.1.18362.1110

Set-Contentの使い方

第一引数に設定するアイテムを、第二引数に設定する値を指定すると、アイテムのコンテンツの値を設定できます。

以下の例ではカレントディレクトリにある「test.txt」のコンテンツの値を「Hello World」に設定しています。

PS C:\Users\santerabyte> Set-Content .\test.txt -Value 'Hello World'

オプションを省略しない場合

PS C:\Users\santerabyte> Set-Content -Path .\test.txt -Value 'Hello World'

サンプル

PS C:\Users\santerabyte> Get-Content .\test.txt
Test Text
PS C:\Users\santerabyte> Set-Content .\test.txt 'Hello World'
PS C:\Users\santerabyte> Get-Content .\test.txt
Hello World

リンク

Set-Content (Microsoft.PowerShell.Management) – PowerShell | Microsoft Docs
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-content?view=powershell-7.1

-PowerShell


comment

メールアドレスが公開されることはありません。

関連記事

no image

TCP接続を確認できるPowerShellコマンドレットGet-NetTCPConnectionの使い方

すべての接続 何も引数を指定せずに実行すると、すべての接続が表示されます。 Get-NetTCPConnection 項目絞り込み LocalAddress Get-NetTCPConnection …

no image

PowerShellで現在の文字セットを確認&変更する方法

確認環境 PSVersion 5.1.18362.1171 文字セットを確認 以下のようにchcpコマンドを使用すると、現在のコンソールで設定されている文字セットを表す数値である、コードページが確認で …

no image

PowerShellでCSVファイルを出力する

こんにちは、今日はPowerShellでCSVファイルを出力する方法についてまとめていきます。 確認環境 PSVersion 5.1.18362.1110 CSVファイルを出力する CSVファイルを出 …

no image

PowerShellでコンソールからの入力を受け取るRead-Hostコマンドレットの使い方

コンソールから入力を受け取る 以下のスクリプトで、プロンプトにRead-Hostに渡した引数の文字列が表示され、入力された値が$inputに格納されます。 $input= Read-Host &quo …

no image

PowerShellでWindows Management Instrumentation (WMI)オブジェクトを取得するコマンドレットGet-WmiObjectの使い方

こんにちは、今日はPowerShellでWindows Management Instrumentation (WMI)オブジェクトを取得するコマンドレットGet-WmiObjectの使い方についてま …