使用Windows PowerShell,如何更改命令提示符?

例如,默认提示说

PS C:\Documents and Settings\govendes\My Documents>

我想自定义该字符串。

最佳答案

只需将功能prompt放入您的PowerShell配置文件(notepad $PROFILE)中,例如:

function prompt {"PS: $(get-date)>"}

或有色:
function prompt
{
    Write-Host ("PS " + $(get-date) +">") -nonewline -foregroundcolor White
    return " "
}

关于windows - Windows PowerShell : changing the command prompt,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5725888/

10-12 02:27