SUMMARY: Learn how to change the Windows PowerShell console title Question: How can you change the title of the Windows PowerShell console? Answer: One way to do this is to use the WindowTitle property from $host.ui.rawui. This technique appears here. $host.ui.RawUI.WindowTitle = "Changed Title"...(read more)
↧