Skip to content

Instantly share code, notes, and snippets.

@cosoria
Created April 5, 2018 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cosoria/fd4576501653f9c99286098e4c65f287 to your computer and use it in GitHub Desktop.
Save cosoria/fd4576501653f9c99286098e4c65f287 to your computer and use it in GitHub Desktop.
Powershell Profile
# add prompt
function Global:prompt {"PS [$Env:username]@$PWD`n>"}
# Chocolatey profile
$ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
if (Test-Path($ChocolateyProfile)) {
Import-Module "$ChocolateyProfile"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment