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

PowerTip: Personalize Your Copy of PowerShell

$
0
0

Summary: Easily add your user name to your Windows PowerShell console window.

Hey, Scripting Guy! Question I often start multiple Windows PowerShell consoles with different credentials.
          To avoid getting confused, how can I change the window title to my user name?

Hey, Scripting Guy! Answer Use the $host automatic variable, and change the WindowTitle property to the user name:

$host.ui.RawUI.WindowTitle = $env:USERNAME


Viewing all articles
Browse latest Browse all 3333

Trending Articles