Mklink

mklink (symbolik link)

Description

Creates a directory or file symbolic or hard link.

Link folder

cmd>mklink /J $path/to_origin_folder $path/to_your_linked_folder

General use

Parameter Description
/d Creates a directory symbolic link. By default, this command creates a file symbolic link.
/h Creates a hard link instead of a symbolic link.
/j Creates a Directory Junction.
<link> Specifies the name of the symbolic link being created.
<target> Specifies the path (relative or absolute) that the new symbolic link refers to.
/? Displays help at the command prompt.

Source : microsoft

Date : 2020.10.13