Skip to content

Instantly share code, notes, and snippets.

@hoangitk
Created July 27, 2021 04:20
Show Gist options
  • Save hoangitk/4498143a51b916bcaad0fae9856fe9d1 to your computer and use it in GitHub Desktop.
Save hoangitk/4498143a51b916bcaad0fae9856fe9d1 to your computer and use it in GitHub Desktop.
[Powershell Prompt] #powershell #fresh-install

#Powershell Prompt

New-Item -ItemType File -Path $PROFILE -Force
notepad $PROFILE
function global:prompt {
    Write-Host $ExecutionContext.SessionState.Path.CurrentLocation -ForegroundColor Cyan
    "$('>' * ($nestedPromptLevel + 1)) "
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment