PowerShell: Color Prompt

By Xah Lee. Date: . Last updated: .

put this in your PowerShell: Profile (init file)

function prompt {
    Write-Host "PS $(Get-Location)>" -NoNewline -ForegroundColor cyan
    return "`n"
}

PowerShell. Profile and Script