Created
July 21, 2021 15:37
-
-
Save atwayne/ff636b70cfa7ec601f715ded8f538e77 to your computer and use it in GitHub Desktop.
Powershell profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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