Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Change the PowerShell Console Title

$
0
0

Summary: Learn how to change the Windows PowerShell console title.


Hey, Scripting Guy! Question How can I change the title of the Windows PowerShell console?

Hey, Scripting Guy! Answer One way to do this is to use the WindowTitle property from $host.ui.rawui, as shown here.

$host.ui.RawUI.WindowTitle = "Changed Title"


Viewing all articles
Browse latest Browse all 3333

Trending Articles