Summary: Learn how to change the Windows PowerShell console title.
How can I change the title of the Windows PowerShell console?
One way to do this is to use the WindowTitle property from $host.ui.rawui, as shown here.
$host.ui.RawUI.WindowTitle = "Changed Title"