Skip to content

Instantly share code, notes, and snippets.

@Kison
Created January 23, 2017 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kison/6d65158cb9c72b71f13d7cc624523544 to your computer and use it in GitHub Desktop.
Save Kison/6d65158cb9c72b71f13d7cc624523544 to your computer and use it in GitHub Desktop.
How to create symbol link in Windows 10
MKLINK [[/D] | [/H] | [/J]] Link Target
/D Creates a directory symbolic link. Default is a file
symbolic link.
/H Creates a hard link instead of a symbolic link.
/J Creates a Directory Junction.
Link Specifies the new symbolic link name.
Target Specifies the path (relative or absolute) that the new link
refers to.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment