PowerShell 技能连载 - 设置 Powershell 标题文本

您也许知道可以通过类似这样一行代码改变 PowerShell 宿主窗口的标题文本:

1
PS> $host.UI.RawUI.WindowTitle = "Hello  World!"

如果把这段代码加入 prompt 函数,标题文本就可以每次变化。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
function prompt
{
# get current path
$path = Get-Location

# get current time
$date = Get-Date -Format 'dddd, MMMM dd'

# create title text
$host.UI.RawUI.WindowTitle = ">>$path<< [$date]"

# output prompt
'PS> '
}

PowerShell 每次完成一条命令之后,都会执行 “prompt“ 函数。在标题栏中,您将始终能看到当前的路径和日期,而 PowerShell 编辑器中的命令提示符被简化成 “PS> “。

PowerShell 技能连载 - 设置 Powershell 标题文本

http://blog.vichamp.com/2017/07/14/setting-powershell-title-text/

作者

吴波

发布于

2017-07-14

更新于

2022-07-06

许可协议

评论