A seguir tem outro link bastante legal sobre como personalizar o prompt no Powershell. Dá pra fazer umas coisas bastante úteis...
http://decav.com/blogs/andre/archive/2007/02/12/1072.aspx
E abaixo, pra completar, minha contribuição: o meu prompt:
function prompt {
$a = pwd
write-host -foreground yellow -nonewline "$username@$(cat env:\computername) "
write-host -foreground white -nonewline ($a.Path.Split('\')[-1] + '#')
return ' '
}
Até logo!
Comentários
Postar um comentário