更改PowerShell外观 - 目录下的命令行

时间:2014-10-22 11:24:38

标签: windows powershell command-line appearance

我想知道是否可以更改PowerShell的外观,因此命令行在目录行下面有一行:

C:\your\directory\path\will\go\here >
$ now-a-super-long-command-can-be-entered-here

1 个答案:

答案 0 :(得分:2)

您需要修改prompt功能。

以下可以做你想做的事:

function prompt {
    Write-Host "$(Get-Location) > "
    return "$ "
}

只需将其粘贴到现有的PowerShell窗口即可立即启用它。如果您想将其永久化,请将其添加到profile.ps1

This link包含有关修改个人资料的信息。