0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PowerShell でディレクトリのシンボリックリンクを作成する方法

Posted at

PowerShellでは new-item を使用を使用する(要・管理者権限)

New-Item -ItemType SymbolicLink -Path "リンク" -Target "リンク先(実体のディレクトリ)"

#意味は同じ
New-Item -ItemType SymbolicLink -Path "リンク" -Value "リンク先(実体のディレクトリ)"

#記載の順番を入れ替えても良い
New-Item -ItemType SymbolicLink -Target "リンク先(実体のディレクトリ)" -Path "リンク"

コマンドプロンプトでは mklink /D を使用していた

mlkink /D "リンク" "リンク先(実体のディレクトリ)"
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?