Você pode acessar seu diretório inicial com este comando:
cd $home
No prompt de comando do cmd, esse comando me levará ao meu diretório pessoal:
cd %UserProfile%
No prompt de comando do PowerShell, o mesmo comando produz este erro:
Set-Location : Cannot find path 'C:\%UserProfile%' because it does not exist.
At line:1 char:3
+ cd <<<< %UserProfile%
+ CategoryInfo : ObjectNotFound: (C:\%UserProfile%:String) [Set-Location], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SetLocationCommand
Qual é o comando equivalente no PowerShell?
Essa taquigrafia é uma das minhas favoritas:
cd ~
Você também pode fazer:
cd ~\Deskt
(Aperte a tecla Tab para auto-completar, funciona bem quando você está enterrado em algum diretório profundo e precisa copiar algo para o Desktop ou algum lugar do seu $ HOME)
Tags windows-7 powershell