web-dev-qa-db-ja.com

PowerShellでホームディレクトリに移動します。

Cmdコマンドプロンプトで、このコマンドを実行するとホームディレクトリに移動します。

cd %UserProfile%

PowerShellコマンドプロンプトで、同じコマンドが次のエラーを生成します。

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

PowerShellの同等のコマンドは何ですか?

次のコマンドでホームディレクトリに移動できます。

cd $home
28
imtheman

この略記は私のお気に入りの1つです。

cd ~

あなたも行うことができます:

cd ~\Deskt 

(ヒット Tab オートコンプリートの鍵です。深いディレクトリに埋もれていて、何かをデスクトップまたは$ HOMEのどこかにコピーする必要がある場合にうまく機能します)

12
yaxzone