Search This Blog

Create Symbolic Link on Windows 10

  • Open Command Prompt as Administrator
  • Create a symbolic link to file:
     mklink path\to\Link \path\to\TargetFile 
  • Create a symbolic link to directory:
     mklink /D path\to\Link \path\to\TargetDir 
  • Create a hard link to file:
     mklink /H path\to\Link \path\to\TargetFile 
  • Create a hard link to directory:
     mklink /J path\to\Link \path\to\TargetDir 






see also

No comments:

Post a Comment