The default color of verbose output (e.g. Write-Verbose
or -Verbose
switch) in Powershell is yellow. This makes it look like warnings, although it's non-critical.
How can I change the default color of verbose output?
The default color of verbose output (e.g. Write-Verbose
or -Verbose
switch) in Powershell is yellow. This makes it look like warnings, although it's non-critical.
How can I change the default color of verbose output?
This is possible hosing the $Host automatic variable.
In your $Profile add:
(You can use any valid ConsoleColor.)