if you tend to have multiple Powershell consoles open, then it can be quite handy to set the name of each window.
here is a one-liner based on another blog:
reference / credit: http://johnfail.wordpress.com/2012/01/08/customizing-your-powershell-window-title/
here is a one-liner based on another blog:
$consoleObject = (Get-Host).UI.RawUI ; $consoleObject.WindowTitle = “Uber-Console”
reference / credit: http://johnfail.wordpress.com/2012/01/08/customizing-your-powershell-window-title/
Comments
Post a Comment