PowerShell 文字色の変更
とりあえず、黒字に赤は嫌なので変更を考える
変更方法はリリースノートに書いてあります。
バックカラーはコマンドプロンプトと同様に変更可能
現在の文字の色は「$host.privatedata」コマンドで確認可能
PS > $host.privatedata
ErrorForegroundColor :Red
ErrorBackgroundColor :Black
WarningForegroundColor :Yellow
WarningBackgroundColor :Black
DebugForegroundColor :Yellow
DebugBackgroundColor :Black
VerboseForegroundColor :Yellow
VerboseForegroundColor :Black
ProgressForegroundColor :Yellow
ProgressBackgroundColor :DarkCyan
色を変更するには、以下のように実行すれば変更可能です。
PS > $host.privatedata.ErrorForegroundColor = "blue"