Certainly you have not wondered how to change the window title in PowerShell. Here is a very simple way.

To change the Powershell window title from the script being executed, use the following entry:

$host.ui.RawUI.WindowTitle = "New window title"

Before:

PowerShell_before.png

After:

PowerShell_after.png

Comments


Comments are closed