How to change the Foreground color or Font color of the console using PowerShell?


Font color is termed as the Foreground color in the PowerShell. To change the font color you can use the console GUI property “Screen Text”. There are various 16 colors available and you can change RGB properties as well.

Command

To change the color with the script, use the below command.

$Host.UI.RawUI.ForegroundColor = "Yellow"

Output

You can see the immediate change in the Foreground color.

Updated on: 23-Jan-2020

6K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements