こんにちは、今日はPowerShellでコンソールに出力するコマンドレットWrite-Hostの使い方についてまとめていきます。
確認環境
PSVersion 5.1.18362.1110
Write-Hostの使い方
以下のように文字列を渡すとその文字列がコンソールに出力されます。
Write-Host "test"
以下のように文字色と背景色の指定も可能です。
Write-Host "test" -ForegroundColor white -BackgroundColor black
リンク
Write-Host (Microsoft.PowerShell.Utility) – PowerShell | Microsoft Docs
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/write-host?view=powershell-7.1