Skip to content

Instantly share code, notes, and snippets.

@kflu
Last active December 10, 2015 02:58
Show Gist options
  • Save kflu/4371699 to your computer and use it in GitHub Desktop.
Save kflu/4371699 to your computer and use it in GitHub Desktop.
Clear-Item -Path alias:dir
function dir
{
Invoke-Expression "cmd /c dir $args"
}
Clear-Item -Path alias:cd
New-Alias -Name cd -Value Push-Location
$env:Path = ".\;$env:Path"
Set-Location $HOME
Write-Host "Welcome!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment