Skip to content

Instantly share code, notes, and snippets.

@atwayne
Created July 21, 2021 15:37
Show Gist options
  • Save atwayne/ff636b70cfa7ec601f715ded8f538e77 to your computer and use it in GitHub Desktop.
Save atwayne/ff636b70cfa7ec601f715ded8f538e77 to your computer and use it in GitHub Desktop.
Powershell profile
# Install with
# New-Item -Path $profile -ItemType File -Force
# Remove alias where -> Where-Object
Remove-Item alias:\where -Force
function prompt {
$dir = $ExecutionContext.SessionState.Path.CurrentLocation.Path
Write-Host ("["+$dir+"]$") -ForegroundColor Magenta -NoNewline
return " "
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment