How to Change PowerShell Color Scheme on Windows 10

The primary ever Home windows PowerShell was launched over a decade in the past for Home windows XP, Home windows Server 2003 and Home windows Vista. It’s been a relentless a part of all Home windows editions since then, beginning with Home windows 7 in 2009. Whereas there have been many adjustments made to the software program itself, the one factor that has stayed unchanged over time is the colour scheme – a blue background with white/yellow textual content usually, and pink textual content on a black background for error messages. Whereas most individuals have gotten used to those colours, a few of you might have considered trying one thing extra distinctive, both for higher visibility or for aesthetic causes. That being the case, let’s speak a take a look at how one can change Home windows PowerShell colour scheme in Home windows 10:

Word: Earlier than we proceed, it’s essential to grasp that this specific tutorial will cope with the PowerShell console, and never the PowerShell ISE, which is among the two host purposes for Home windows PowerShell engine and language. It has it’s personal customization settings that must be tackled individually, and is past the scope of this tutorial.

Change Background and Foreground Colours in Home windows 10 PowerShell Console

  • As talked about earlier, Home windows PowerShell console shows white on blue by default and pink on black for error messages, so to alter colours, right-click on the PowerShell Window top-bar, and choose ‘Properties’.

How to Change Windows PowerShell Color Scheme on Windows 10

  • As soon as the Home windows PowerShell ‘Properties’ field pops up, click on on the ‘Colours’ tab, and also you’ll get a complete host of selections to set background and foreground colours as seen within the screenshot beneath.

How to Change Windows PowerShell Color Scheme on Windows 10

From right here, you may change textual content colours, popup textual content colours, background colours and even set the opacity ranges.

Change Error Message Colours in Home windows 10 PowerShell Console

  • Whereas this was a very easy solution to change a number of the settings, what if you wish to do extra in depth adjustments to your PowerShell console? For instance, what for those who need to change the textual content and background colours of error messages from pink on black to one thing rather less drastic? For that, you’ll must get down and soiled and use the console itself somewhat than depend on GUI. First off, to know the default colours, go forward and replica/paste this code on the PowerShell console and press ‘Enter’: $host.privatedata

How to Change Windows PowerShell Color Scheme on Windows 10

  • To alter the foreground and background colours of error messages, all you have to do is assign new values. Since I’d like to alter the background colour to ‘Magenta’ and foreground colour to ‘Inexperienced’, I’ll enter the 2 instructions beneath. Simply bear in mind to enter them individually and press ‘Enter’ in every case.
    $host.PrivateData.ErrorBackgroundColor = "Magenta"

    $host.PrivateData.ErrorForegroundColor = "Inexperienced"

How to Change Windows PowerShell Color Scheme on Windows 10

  • You could have now configured your console settings, however you’ll must save them to your profile settings in order that the display screen opens up precisely as you need it to, each time. For that, first run the command $profile. It will present you the title (and placement) of the default file in your profile.

How to Change Windows PowerShell Color Scheme on Windows 10

  • In actuality, although, the default PowerShell configuration file doesn’t even exist normally. So run the next command to examine if it already exists or if you have to create it from scratch: test-path $profile. If the file already exists, you’ll get a “True” output, else, you’ll get “False”.

How to Change Windows PowerShell Color Scheme on Windows 10

  • As you may see from the above screenshot, I acquired the latter, so I’ll must create the file. For those who get “True”, skip this step and go to the following. Else, enter the next command to create the file: New-Merchandise -path $profile -type file -force

How to Change Windows PowerShell Color Scheme on Windows 10

  • As soon as the file is created, you may simply edit it with Notepad through the use of the notepad $profile command within the Powershell Window. From there, you may add no matter configuration code you need to utilizing the instructions mentioned above. You cannot solely change colours, but in addition fonts, home windows dimension, and many others by this technique, however we’re solely going to check out altering colours with out complicating issues any additional.

    $console = $host.ui.rawui
    $console.backgroundcolor = "black"
    $console.foregroundcolor = "white"
    $colours = $host.privatedata
    $colours.verbosebackgroundcolor = "Magenta"
    $colours.verboseforegroundcolor = "Inexperienced"
    $colours.warningbackgroundcolor = "Purple"
    $colours.warningforegroundcolor = "white"

    $colours.ErrorBackgroundColor = "DarkCyan"
    $colours.ErrorForegroundColor = "Yellow"
    set-location C:
    clear-host

How to Change Windows PowerShell Color Scheme on Windows 10

  • We’re virtually there, however there’s one final step. Run the next command to allow native scripts to run in your system: Set-ExecutionPolicy RemoteSigned and choose “A” to permit all scripts. Now that you just’re performed, that is how your PowerShell console would look each time you begin it up. Even the errors messages would look rather less jarring than they usually do.

How to Change Windows PowerShell Color Scheme on Windows 10

That’s it, people, I’ve made the Home windows PowerShell console on my work laptop computer look virtually precisely like the nice outdated Command Immediate with only a sprint of colour thrown in for enjoyable.

Word: Whereas the aforementioned steps are meant particularly for Home windows 10, I additionally tried them out on our older Dell desktop working Home windows 7. Each step is just about an identical, and each factor labored as anticipated.

SEE ALSO: Methods to Cease Home windows 10 Updates From Putting in Routinely

Use Easy Instructions To Change Home windows PowerShell Colours in Home windows 10

The Home windows PowerShell is a good device for energy customers however that doesn’t imply it needs to be boring, drab and boring. Tweaking a couple of setting right here and there could make a world of distinction to how your PowerShell console seems, so give it a go and alter the colours to no matter your coronary heart appears like. And when you try this, don’t neglect to provide us a heads-up about how issues went, as a result of we love listening to from you.