PowerShell: Change Title Bar

I always see this common question, “How can I change the title of the Windows PowerShell console?”

Below you can see how we use the WindowTitle property from $host.ui.rawui.

$host.ui.RawUI.WindowTitle = “Changed Title”

Leave a comment