Summary: Learn how to change the color of Windows PowerShell errors.
How can I change the color of Windows PowerShell errors in the Windows PowerShell console?
Use $host.PrivateData and supply a new value for ErrorForegroundColor, for example:
$Host.PrivateData.ErrorForegroundColor = 'white'